diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-09-01 12:00:08 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-09-01 12:00:08 -0500 |
commit | bb51af5ae9c405faafad3b9685eef545c3437adb (patch) | |
tree | 0705cea86e68f223fd240aeabaf4aacb7d4ea43f /src/state/index.ts | |
parent | 346385ce43b609df82a70a8cb038b6622c99c24e (diff) | |
download | voidsky-bb51af5ae9c405faafad3b9685eef545c3437adb.tar.zst |
Implement working screen-state management and remove extraneous loads
Diffstat (limited to 'src/state/index.ts')
-rw-r--r-- | src/state/index.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/state/index.ts b/src/state/index.ts index 91726dc6e..9ebf321e4 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -27,7 +27,6 @@ export async function setupState() { // track changes & save to storage autorun(() => { const snapshot = rootStore.serialize() - console.log('saving', snapshot) storage.save(ROOT_STATE_STORAGE_KEY, snapshot) }) |