diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-08 09:46:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 09:46:07 -0800 |
commit | 5eadadffbf5475b233da7b1463e2345ff3e3cfce (patch) | |
tree | af3dd9f05a6eab919515b7de965a1fea51ad346b /src/state/shell/reminders.e2e.ts | |
parent | 5843e212c0ebbfc6c3831929bbbaa72e1a289aba (diff) | |
download | voidsky-5eadadffbf5475b233da7b1463e2345ff3e3cfce.tar.zst |
State layer cleanup: move alt-text-required into preferences and fix a bug in reminders (#1845)
* Move alt-text-required into preferences * Fix bug: reminders now using new onboarding state
Diffstat (limited to 'src/state/shell/reminders.e2e.ts')
-rw-r--r-- | src/state/shell/reminders.e2e.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/state/shell/reminders.e2e.ts b/src/state/shell/reminders.e2e.ts index 6238ffa29..d7703e9e0 100644 --- a/src/state/shell/reminders.e2e.ts +++ b/src/state/shell/reminders.e2e.ts @@ -1,10 +1,6 @@ -import {OnboardingModel} from '../models/discovery/onboarding' import {SessionModel} from '../models/session' -export function shouldRequestEmailConfirmation( - _session: SessionModel, - _onboarding: OnboardingModel, -) { +export function shouldRequestEmailConfirmation(_session: SessionModel) { return false } |