diff options
author | Hailey <me@haileyok.com> | 2024-02-16 13:25:48 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 13:25:48 -0800 |
commit | a2f462e26195a8a29e8bacfdadda7c5bbef2305f (patch) | |
tree | 4b86bde577702fea4c65864b5c0b2bd149ac7fd8 /src/view/shell/desktop/RightNav.tsx | |
parent | b665f065b7b63cb34bf11cb66e255131332fc7f2 (diff) | |
download | voidsky-a2f462e26195a8a29e8bacfdadda7c5bbef2305f.tar.zst |
remove sandbox labels (#2883)
* rm sandbox * remove comment
Diffstat (limited to 'src/view/shell/desktop/RightNav.tsx')
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 264fef194..c1f498724 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -9,14 +9,13 @@ import {FEEDBACK_FORM_URL, HELP_DESK_URL} from 'lib/constants' import {s} from 'lib/styles' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {useLingui} from '@lingui/react' -import {Trans, msg} from '@lingui/macro' +import {msg} from '@lingui/macro' import {useSession} from '#/state/session' export function DesktopRightNav({routeName}: {routeName: string}) { const pal = usePalette('default') - const palError = usePalette('error') const {_} = useLingui() - const {isSandbox, hasSession, currentAccount} = useSession() + const {hasSession, currentAccount} = useSession() const {isTablet} = useWebMediaQueries() if (isTablet) { @@ -49,13 +48,6 @@ export function DesktopRightNav({routeName}: {routeName: string}) { paddingTop: hasSession ? 0 : 18, }, ]}> - {isSandbox ? ( - <View style={[palError.view, styles.messageLine, s.p10]}> - <Text type="md" style={[palError.text, s.bold]}> - <Trans>SANDBOX. Posts and accounts are not permanent.</Trans> - </Text> - </View> - ) : undefined} <View style={[{flexWrap: 'wrap'}, s.flexRow]}> {hasSession && ( <> |