about summary refs log tree commit diff
path: root/src/view/screens/Settings.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-11-08 09:46:07 -0800
committerGitHub <noreply@github.com>2023-11-08 09:46:07 -0800
commit5eadadffbf5475b233da7b1463e2345ff3e3cfce (patch)
treeaf3dd9f05a6eab919515b7de965a1fea51ad346b /src/view/screens/Settings.tsx
parent5843e212c0ebbfc6c3831929bbbaa72e1a289aba (diff)
downloadvoidsky-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/view/screens/Settings.tsx')
-rw-r--r--src/view/screens/Settings.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx
index 37c2961b4..570f8b7e0 100644
--- a/src/view/screens/Settings.tsx
+++ b/src/view/screens/Settings.tsx
@@ -50,10 +50,12 @@ import {
   useSetMinimalShellMode,
   useColorMode,
   useSetColorMode,
-  useRequireAltTextEnabled,
-  useSetRequireAltTextEnabled,
   useOnboardingDispatch,
 } from '#/state/shell'
+import {
+  useRequireAltTextEnabled,
+  useSetRequireAltTextEnabled,
+} from '#/state/preferences'
 
 // TEMPORARY (APP-700)
 // remove after backend testing finishes