diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-05-17 01:38:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-16 15:38:34 -0700 |
commit | 1cdbfc709235ed1933ba51403d941762f384690b (patch) | |
tree | f55aa9a16f05645bcc5c2d63839113725b1ca308 /src/App.native.tsx | |
parent | 75ffb3d243a5415d173f2bca8a5334b70451a1f4 (diff) | |
download | voidsky-1cdbfc709235ed1933ba51403d941762f384690b.tar.zst |
Live via service config (#8378)
* add config (with temp config) * only allow whitelisted domains in form * move config to generic config * use array-based config * update deps * rm expect-error
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index ea50fdfb9..baab8c838 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -43,6 +43,7 @@ import {Provider as PrefsStateProvider} from '#/state/preferences' import {Provider as LabelDefsProvider} from '#/state/preferences/label-defs' import {Provider as ModerationOptsProvider} from '#/state/preferences/moderation-opts' import {Provider as UnreadNotifsProvider} from '#/state/queries/notifications/unread' +import {Provider as ServiceAccountManager} from '#/state/service-config' import { Provider as SessionProvider, type SessionAccount, @@ -57,7 +58,6 @@ import {Provider as ProgressGuideProvider} from '#/state/shell/progress-guide' import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed' import {Provider as StarterPackProvider} from '#/state/shell/starter-pack' import {Provider as HiddenRepliesProvider} from '#/state/threadgate-hidden-replies' -import {Provider as TrendingConfigProvider} from '#/state/trending-config' import {TestCtrls} from '#/view/com/testing/TestCtrls' import {Provider as VideoVolumeProvider} from '#/view/com/util/post-embeds/VideoVolumeContext' import * as Toast from '#/view/com/util/Toast' @@ -149,7 +149,7 @@ function InnerApp() { <BackgroundNotificationPreferencesProvider> <MutedThreadsProvider> <ProgressGuideProvider> - <TrendingConfigProvider> + <ServiceAccountManager> <GestureHandlerRootView style={s.h100pct}> <IntentDialogProvider> @@ -158,7 +158,7 @@ function InnerApp() { <NuxDialogs /> </IntentDialogProvider> </GestureHandlerRootView> - </TrendingConfigProvider> + </ServiceAccountManager> </ProgressGuideProvider> </MutedThreadsProvider> </BackgroundNotificationPreferencesProvider> |