Imagery imported for icons and items. Live updates working.

Hover tooltip working. Features.md added for better tracking.
This commit is contained in:
2025-10-28 08:41:04 +08:00
parent 4ea30cc12e
commit ea8484fca7
16068 changed files with 3097 additions and 6 deletions

View File

@@ -8,6 +8,7 @@ import unlocksReducer, { loadState as loadUnlocksState } from './store/unlocks/u
import characterReducer, { loadState as loadCharacterState, selectActiveCharacter } from './store/user/character';
import accountReducer, { loadState as loadAccountState } from './store/user/account';
import calculatorsReducer, { loadState as loadCalculatorsState } from './store/calculators/calculators';
import groupReducer, { loadState as loadGroupState } from './store/group/groupState';
const reducer = {
filters: filterReducer,
@@ -17,6 +18,7 @@ const reducer = {
character: characterReducer,
account: accountReducer,
calculators: calculatorsReducer,
group: groupReducer,
};
const preloadedState = {
@@ -27,6 +29,7 @@ const preloadedState = {
character: loadCharacterState(),
account: loadAccountState(),
calculators: loadCalculatorsState(),
group: loadGroupState(),
};
const store = configureStore({
@@ -46,6 +49,7 @@ store.subscribe(
updateLocalStorage(LOCALSTORAGE_KEYS.CHARACTER, store.getState().character);
updateLocalStorage(LOCALSTORAGE_KEYS.ACCOUNT, store.getState().account);
updateLocalStorage(LOCALSTORAGE_KEYS.CALCULATORS, store.getState().calculators);
updateLocalStorage(LOCALSTORAGE_KEYS.GROUP, store.getState().group);
}, 200)
);