settings: default tutorial to seen

Prevents a race condition where the tutorial prompt will always show
This commit is contained in:
Liam Fitzgerald 2021-04-19 15:47:27 +10:00
parent 9a7f90bb63
commit f1be29389a
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB

View File

@ -58,7 +58,7 @@ const useSettingsState = createState<SettingsState>('Settings', {
categories: leapCategories,
},
tutorial: {
seen: false,
seen: true,
joined: undefined
}
});