aboutsummaryrefslogtreecommitdiff
path: root/src/routes/main/MainStackScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/main/MainStackScreen.tsx')
-rw-r--r--src/routes/main/MainStackScreen.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/routes/main/MainStackScreen.tsx b/src/routes/main/MainStackScreen.tsx
index d146190c..d18d11c6 100644
--- a/src/routes/main/MainStackScreen.tsx
+++ b/src/routes/main/MainStackScreen.tsx
@@ -311,7 +311,13 @@ const MainStackScreen: React.FC<MainStackProps> = ({route}) => {
component={NewChatModal}
options={{headerShown: false, ...newChatModalStyle}}
/>
- <MainStack.Screen name="TagSelection" component={TagSelection} />
+ <MainStack.Screen
+ name="TagSelection"
+ component={TagSelection}
+ options={{
+ ...headerBarOptions('black', ''),
+ }}
+ />
</MainStack.Navigator>
);
};