diff options
author | Hailey <me@haileyok.com> | 2024-02-18 14:44:48 -0800 |
---|---|---|
committer | Hailey <me@haileyok.com> | 2024-02-18 14:44:48 -0800 |
commit | dcf9fa5e11695a2eb70170baabde584a01fc8d36 (patch) | |
tree | 913b624db9c36d5558bd3a31cd9d042f8f4ceb8b /src/view/com/feeds/FeedPage.tsx | |
parent | 31b7f7601563adea2dd8372b62c911b183953eec (diff) | |
parent | a40b43dfc922ced379b73ec3967d8fb297cea925 (diff) | |
download | voidsky-dcf9fa5e11695a2eb70170baabde584a01fc8d36.tar.zst |
Merge branch 'main' into fork/main
# Conflicts: # src/locale/locales/it/messages.po
Diffstat (limited to 'src/view/com/feeds/FeedPage.tsx')
-rw-r--r-- | src/view/com/feeds/FeedPage.tsx | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/src/view/com/feeds/FeedPage.tsx b/src/view/com/feeds/FeedPage.tsx index 9595e77e5..d8da569b1 100644 --- a/src/view/com/feeds/FeedPage.tsx +++ b/src/view/com/feeds/FeedPage.tsx @@ -46,7 +46,7 @@ export function FeedPage({ renderEmptyState: () => JSX.Element renderEndOfFeed?: () => JSX.Element }) { - const {isSandbox, hasSession} = useSession() + const {hasSession} = useSession() const pal = usePalette('default') const {_} = useLingui() const navigation = useNavigation() @@ -119,7 +119,7 @@ export function FeedPage({ style={[pal.text, {fontWeight: 'bold'}]} text={ <> - {isSandbox ? 'SANDBOX' : 'Bluesky'}{' '} + Bluesky{' '} {hasNew && ( <View style={{ @@ -154,16 +154,7 @@ export function FeedPage({ ) } return <></> - }, [ - isDesktop, - pal.view, - pal.text, - pal.textLight, - hasNew, - _, - isSandbox, - hasSession, - ]) + }, [isDesktop, pal.view, pal.text, pal.textLight, hasNew, _, hasSession]) return ( <View testID={testID} style={s.h100pct}> |