aboutsummaryrefslogtreecommitdiff
path: root/src/store.ts
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2023-01-25 19:39:09 +1100
committerTerry Truong <terry06890@gmail.com>2023-01-25 19:39:09 +1100
commitddb38fc873d6bbce5a69d059237374e6ab23422f (patch)
tree7b629048cca0c3660967b86689db337004e06119 /src/store.ts
parent56abab8390a50b026433793befc67587c08d5a21 (diff)
Add intro modal
Diffstat (limited to 'src/store.ts')
-rw-r--r--src/store.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/store.ts b/src/store.ts
index 4436211..dbc798c 100644
--- a/src/store.ts
+++ b/src/store.ts
@@ -50,6 +50,7 @@ export type StoreState = {
work: boolean,
discovery: boolean,
},
+ introSkip: boolean,
// Other
initialStartDate: HistDate, // Must be after MIN_DATE (from lib.ts)
@@ -136,6 +137,7 @@ function getDefaultState(): StoreState {
work: true,
discovery: true,
},
+ introSkip: false,
// Other
initialStartDate: new CalDate(1500, 1, 1),