about summary refs log tree commit diff
path: root/src/App.web.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-08-14 01:13:51 +0300
committerGitHub <noreply@github.com>2025-08-14 01:13:51 +0300
commit7a334362aefadca29bef9de0f4459d0577d328ca (patch)
tree218ffe4b79e096c5926c38f3269a13d42f798961 /src/App.web.tsx
parentb2c56cbd6dfa9af576f947dd41a0d33376b184d1 (diff)
downloadvoidsky-7a334362aefadca29bef9de0f4459d0577d328ca.tar.zst
[Perf - part 1] Hoist service config query (#8812)
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r--src/App.web.tsx15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx
index 2897aa3f2..dfa1e7480 100644
--- a/src/App.web.tsx
+++ b/src/App.web.tsx
@@ -18,6 +18,7 @@ import {Provider as A11yProvider} from '#/state/a11y'
 import {Provider as AgeAssuranceProvider} from '#/state/ageAssurance'
 import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes'
 import {Provider as DialogStateProvider} from '#/state/dialogs'
+import {Provider as EmailVerificationProvider} from '#/state/email-verification'
 import {listenSessionDropped} from '#/state/events'
 import {
   beginResolveGeolocation,
@@ -136,12 +137,14 @@ function InnerApp() {
                                                 <SafeAreaProvider>
                                                   <ProgressGuideProvider>
                                                     <ServiceConfigProvider>
-                                                      <HideBottomBarBorderProvider>
-                                                        <IntentDialogProvider>
-                                                          <Shell />
-                                                          <NuxDialogs />
-                                                        </IntentDialogProvider>
-                                                      </HideBottomBarBorderProvider>
+                                                      <EmailVerificationProvider>
+                                                        <HideBottomBarBorderProvider>
+                                                          <IntentDialogProvider>
+                                                            <Shell />
+                                                            <NuxDialogs />
+                                                          </IntentDialogProvider>
+                                                        </HideBottomBarBorderProvider>
+                                                      </EmailVerificationProvider>
                                                     </ServiceConfigProvider>
                                                   </ProgressGuideProvider>
                                                 </SafeAreaProvider>