From 3663ee57f3e3d83a03ca105e0dda11cd94f68c98 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 14 Jun 2023 20:00:16 -0500 Subject: Add testnet warning (#880) * Add testnet warning * Add watermarks to posts * Call the test environment the Sandbox --- src/view/shell/desktop/RightNav.tsx | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'src/view/shell/desktop/RightNav.tsx') 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 ( {store.session.hasSession && } - - Welcome to Bluesky! This is a beta application that's still in - development. - + {store.session.isSandbox ? ( + + + SANDBOX. Posts and accounts are not permanent. + + + ) : ( + + Welcome to Bluesky! This is a beta application that's still in + development. + + )}