diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-06-14 20:00:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 20:00:16 -0500 |
commit | 3663ee57f3e3d83a03ca105e0dda11cd94f68c98 (patch) | |
tree | 8f6b6b60a316e8446862cde7027fa6687cc04597 /src/view/com/pager/FeedsTabBarMobile.tsx | |
parent | 775b5e6578e5567bee333fc776b8f38072214832 (diff) | |
download | voidsky-3663ee57f3e3d83a03ca105e0dda11cd94f68c98.tar.zst |
Add testnet warning (#880)
* Add testnet warning * Add watermarks to posts * Call the test environment the Sandbox
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" |