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/shell/desktop/RightNav.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/shell/desktop/RightNav.tsx')
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 8f6b2d486..c38c0371a 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -15,15 +15,24 @@ import {formatCount} from 'view/com/util/numeric/format' export const DesktopRightNav = observer(function DesktopRightNav() { const store = useStores() const pal = usePalette('default') + const palError = usePalette('error') return ( <View style={[styles.rightNav, pal.view]}> {store.session.hasSession && <DesktopSearch />} <View style={styles.message}> - <Text type="md" style={[pal.textLight, styles.messageLine]}> - Welcome to Bluesky! This is a beta application that's still in - development. - </Text> + {store.session.isSandbox ? ( + <View style={[palError.view, styles.messageLine, s.p10]}> + <Text type="md" style={[palError.text, s.bold]}> + SANDBOX. Posts and accounts are not permanent. + </Text> + </View> + ) : ( + <Text type="md" style={[pal.textLight, styles.messageLine]}> + Welcome to Bluesky! This is a beta application that's still in + development. + </Text> + )} <View style={[s.flexRow]}> <TextLink type="md" |