fix retrieving settings from localstorage

This commit is contained in:
PhilReact 2025-03-07 01:11:08 +02:00
parent afa1ca9627
commit 2f756f5c2d
2 changed files with 3 additions and 3 deletions

View File

@ -391,7 +391,7 @@ function App() {
const [rootHeight, setRootHeight] = useState("100%");
const [isSettingsOpen, setIsSettingsOpen] = useState(false);
const qortalRequestCheckbox1Ref = useRef(null);
useRetrieveDataLocalStorage()
useRetrieveDataLocalStorage(userInfo?.address)
useQortalGetSaveSettings(userInfo?.name, extState === "authenticated")
const [fullScreen, setFullScreen] = useRecoilState(fullScreenAtom);
const resetAtomIsUsingImportExportSettingsAtom = useResetRecoilState(isUsingImportExportSettingsAtom)

View File

@ -16,7 +16,7 @@ function fetchFromLocalStorage(key) {
}
}
export const useRetrieveDataLocalStorage = () => {
export const useRetrieveDataLocalStorage = (address) => {
const setSortablePinnedApps = useSetRecoilState(sortablePinnedAppsAtom);
const setSettingsLocalLastUpdated = useSetRecoilState(settingsLocalLastUpdatedAtom);
const setIsUsingImportExportSettings = useSetRecoilState(isUsingImportExportSettingsAtom)
@ -51,6 +51,6 @@ export const useRetrieveDataLocalStorage = () => {
getSortablePinnedApps()
getSortablePinnedAppsImportExport()
}, [getSortablePinnedApps])
}, [getSortablePinnedApps, address])
}