diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-30 12:47:40 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-11-30 12:47:40 -0800 |
commit | ee82e78d5cf9165d02a8fe3fa6d2a9d2da165301 (patch) | |
tree | 588b5091a69a760b47a885302f3ff83dd5ba45fb | |
parent | fcd22d4ccb0718db1c9b64fccd90a8bfe3e885d4 (diff) | |
download | voidsky-ee82e78d5cf9165d02a8fe3fa6d2a9d2da165301.tar.zst |
Fix missing export in e2e version
-rw-r--r-- | src/state/shell/reminders.e2e.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/shell/reminders.e2e.ts b/src/state/shell/reminders.e2e.ts index 4bd11bf0a..e8c12792a 100644 --- a/src/state/shell/reminders.e2e.ts +++ b/src/state/shell/reminders.e2e.ts @@ -1,3 +1,5 @@ +export function init() {} + export function shouldRequestEmailConfirmation() { return false } |