about summary refs log tree commit diff
path: root/src/view/shell
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-12-30 15:11:47 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-12-30 15:11:47 -0600
commit62c6da3b9f592aad6b34800c02bc36523b946bb2 (patch)
tree73a729e598a068e867f91c0121ad1965dbcab067 /src/view/shell
parentd952c550ea31a46a17ca9bdb67bef385c8de1f23 (diff)
downloadvoidsky-62c6da3b9f592aad6b34800c02bc36523b946bb2.tar.zst
Integrate settings into design system and some various fixes/tweaks
Diffstat (limited to 'src/view/shell')
-rw-r--r--src/view/shell/mobile/Menu.tsx2
-rw-r--r--src/view/shell/mobile/index.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/mobile/Menu.tsx b/src/view/shell/mobile/Menu.tsx
index 5a97c9f2f..12bafe2f8 100644
--- a/src/view/shell/mobile/Menu.tsx
+++ b/src/view/shell/mobile/Menu.tsx
@@ -145,7 +145,7 @@ export const Menu = ({
           icon={<BellIcon style={pal.text as StyleProp<ViewStyle>} size="28" />}
           label="Notifications"
           url="/notifications"
-          count={store.me.notificationCount || 10}
+          count={store.me.notificationCount}
         />
       </View>
       <View style={[styles.section, pal.border]}>
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx
index 8d589997c..7b96c87ba 100644
--- a/src/view/shell/mobile/index.tsx
+++ b/src/view/shell/mobile/index.tsx
@@ -346,7 +346,7 @@ export const MobileShell: React.FC = observer(() => {
   const isAtNotifications = store.nav.tab.current.url === '/notifications'
 
   const screenBg = {
-    backgroundColor: theme.colorScheme === 'dark' ? colors.black : colors.gray1,
+    backgroundColor: theme.colorScheme === 'dark' ? colors.gray7 : colors.gray1,
   }
   return (
     <View style={styles.outerContainer}>