diff options
author | dan <dan.abramov@gmail.com> | 2024-08-29 18:57:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 18:57:36 +0100 |
commit | faf66f3178fbddcfaab9c851b9315f20cd285c38 (patch) | |
tree | f0072c6359184760c232ab7d7371724a0c66f6b1 /src/App.web.tsx | |
parent | 69053b1b0add68cc04ce7bc336ed65b2514e207b (diff) | |
download | voidsky-faf66f3178fbddcfaab9c851b9315f20cd285c38.tar.zst |
Remove new_user_guided_tour and tour code (#5023)
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r-- | src/App.web.tsx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx index 69a8020c2..fa1fba031 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -48,7 +48,6 @@ import {ThemeProvider as Alf} from '#/alf' import {useColorModeTheme} from '#/alf/util/useColorModeTheme' import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry' import {Provider as PortalProvider} from '#/components/Portal' -import {Provider as TourProvider} from '#/tours' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' function InnerApp() { @@ -111,11 +110,9 @@ function InnerApp() { <BackgroundNotificationPreferencesProvider> <MutedThreadsProvider> <SafeAreaProvider> - <TourProvider> - <ProgressGuideProvider> - <Shell /> - </ProgressGuideProvider> - </TourProvider> + <ProgressGuideProvider> + <Shell /> + </ProgressGuideProvider> </SafeAreaProvider> </MutedThreadsProvider> </BackgroundNotificationPreferencesProvider> |