diff options
Diffstat (limited to 'src/view/com/pager/FeedsTabBarMobile.tsx')
-rw-r--r-- | src/view/com/pager/FeedsTabBarMobile.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/pager/FeedsTabBarMobile.tsx b/src/view/com/pager/FeedsTabBarMobile.tsx index 9c7138815..621173567 100644 --- a/src/view/com/pager/FeedsTabBarMobile.tsx +++ b/src/view/com/pager/FeedsTabBarMobile.tsx @@ -62,7 +62,9 @@ export const FeedsTabBar = observer( /> </TouchableOpacity> </View> - <Text style={[brandBlue, s.bold, styles.title]}>Bluesky</Text> + <Text style={[brandBlue, s.bold, styles.title]}> + {store.session.isSandbox ? 'SANDBOX' : 'Bluesky'} + </Text> <View style={[pal.view]}> <Link href="/settings/saved-feeds" |