fix: infinite reloading (#2405)

This commit is contained in:
Himself65
2023-05-16 22:58:34 -07:00
committed by LongYinan
parent 26f3380c1a
commit e099734cc7
2 changed files with 15 additions and 11 deletions

View File

@@ -28,11 +28,7 @@ export const rootWorkspacesMetadataAtom = atomWithStorage<
);
// two more atoms to store the current workspace and page
export const rootCurrentWorkspaceIdAtom = atomWithStorage<string | null>(
'root-current-workspace-id',
null,
createJSONStorage(() => sessionStorage)
);
export const rootCurrentWorkspaceIdAtom = atom<string | null>(null);
rootCurrentWorkspaceIdAtom.onMount = set => {
if (typeof window !== 'undefined') {
@@ -52,11 +48,7 @@ rootCurrentWorkspaceIdAtom.onMount = set => {
}
};
export const rootCurrentPageIdAtom = atomWithStorage<string | null>(
'root-current-page-id',
null,
createJSONStorage(() => sessionStorage)
);
export const rootCurrentPageIdAtom = atom<string | null>(null);
rootCurrentPageIdAtom.onMount = set => {
if (typeof window !== 'undefined') {