fix: update state

This commit is contained in:
GyDi
2022-03-22 01:27:22 +08:00
parent 9910f6b817
commit dd605e2610
2 changed files with 16 additions and 10 deletions

View File

@@ -16,3 +16,9 @@ export const atomLoadingCache = atom<Record<string, boolean>>({
key: "atomLoadingCache",
default: {},
});
// save update state
export const atomUpdateState = atom<boolean>({
key: "atomUpdateState",
default: false,
});