about summary refs log tree commit diff
path: root/src/Navigation.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-05-02 23:32:16 -0500
committerGitHub <noreply@github.com>2023-05-02 23:32:16 -0500
commit883700e09029bd0d9221edb9910d065da5786fe0 (patch)
treecdf6c849c8b378dffcfc305834a4b31ecbefb7ae /src/Navigation.tsx
parent2eb0d8c095b70b7ec39b7a1acbd126457dea9322 (diff)
downloadvoidsky-883700e09029bd0d9221edb9910d065da5786fe0.tar.zst
[APP-601] Add muted accounts list (#565)
* Add muted accounts list

* Fix icon for muted accounts
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r--src/Navigation.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 412c63f33..9a163fc43 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -49,6 +49,7 @@ import {TermsOfServiceScreen} from './view/screens/TermsOfService'
 import {CommunityGuidelinesScreen} from './view/screens/CommunityGuidelines'
 import {CopyrightPolicyScreen} from './view/screens/CopyrightPolicy'
 import {AppPasswords} from 'view/screens/AppPasswords'
+import {MutedAccounts} from 'view/screens/MutedAccounts'
 import {BlockedAccounts} from 'view/screens/BlockedAccounts'
 import {getRoutingInstrumentation} from 'lib/sentry'
 
@@ -90,6 +91,7 @@ function commonScreens(Stack: typeof HomeTab) {
       />
       <Stack.Screen name="CopyrightPolicy" component={CopyrightPolicyScreen} />
       <Stack.Screen name="AppPasswords" component={AppPasswords} />
+      <Stack.Screen name="MutedAccounts" component={MutedAccounts} />
       <Stack.Screen name="BlockedAccounts" component={BlockedAccounts} />
     </>
   )