change launch/patch to storage property

This commit is contained in:
2024-01-11 16:15:56 +01:00
parent dfa933fb87
commit 3588203527
2 changed files with 12 additions and 7 deletions

View File

@@ -3,5 +3,7 @@ import { Page } from "../consts/pages";
import type { User } from "../types/user";
export const startup = writable(false);
export const launching = writable(false);
export const patch = writable(true);
export const currentUser: Writable<undefined | User> = writable(undefined);
export const currentPage = writable(Page.Login);