about summary refs log tree commit diff
path: root/src/App.native.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-11-08 09:08:42 -0800
committerGitHub <noreply@github.com>2023-11-08 09:08:42 -0800
commit74f8390f1d879350ebb6516fade2b1d83d1601e7 (patch)
treebf627b889faf1c4078562d5644d17422fee2df55 /src/App.native.tsx
parent4afed4be281b6319c328938e4ed757624a78b13c (diff)
downloadvoidsky-74f8390f1d879350ebb6516fade2b1d83d1601e7.tar.zst
Move muted threads to new persistence + context (#1838)
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r--src/App.native.tsx5
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>
   )
 }