diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-08 09:08:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 09:08:42 -0800 |
commit | 74f8390f1d879350ebb6516fade2b1d83d1601e7 (patch) | |
tree | bf627b889faf1c4078562d5644d17422fee2df55 /src/App.native.tsx | |
parent | 4afed4be281b6319c328938e4ed757624a78b13c (diff) | |
download | voidsky-74f8390f1d879350ebb6516fade2b1d83d1601e7.tar.zst |
Move muted threads to new persistence + context (#1838)
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index f5d35cf74..4500b5d07 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -22,6 +22,7 @@ import * as Toast from 'view/com/util/Toast' import {queryClient} from 'lib/react-query' import {TestCtrls} from 'view/com/testing/TestCtrls' import {Provider as ShellStateProvider} from 'state/shell' +import {Provider as MutedThreadsProvider} from 'state/muted-threads' SplashScreen.preventAutoHideAsync() @@ -78,7 +79,9 @@ function App() { return ( <ShellStateProvider> - <InnerApp /> + <MutedThreadsProvider> + <InnerApp /> + </MutedThreadsProvider> </ShellStateProvider> ) } |