Prompt travel

This commit is contained in:
space-nuko
2023-06-03 00:38:09 -05:00
parent ab6266704c
commit b3f2f9093f
22 changed files with 187 additions and 69 deletions

View File

@@ -15,6 +15,8 @@ export type UIState = {
forceSaveUserState: boolean | null,
activeError: PromptID | null
autoPushJourney: boolean
}
type UIStateOps = {
@@ -34,7 +36,9 @@ const store: Writable<UIState> = writable(
reconnecting: false,
forceSaveUserState: null,
activeError: null
activeError: null,
autoPushJourney: true
})
function reconnecting() {