diff options
author | Eric Bailey <git@esb.lol> | 2023-11-10 09:59:04 -0600 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2023-11-10 09:59:04 -0600 |
commit | 436a14eabb4fe2238ff6048f41042433c0e07268 (patch) | |
tree | 047882fe839963796eaa31e908702e3ccd9e86e0 /src/view/com/feeds/FeedPage.tsx | |
parent | d0d93168d4a33c9fc06f84fd3aa98bef6f5f90f0 (diff) | |
download | voidsky-436a14eabb4fe2238ff6048f41042433c0e07268.tar.zst |
Pare down session as much as possible
Diffstat (limited to 'src/view/com/feeds/FeedPage.tsx')
-rw-r--r-- | src/view/com/feeds/FeedPage.tsx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/view/com/feeds/FeedPage.tsx b/src/view/com/feeds/FeedPage.tsx index ffae6cbf4..6a846f677 100644 --- a/src/view/com/feeds/FeedPage.tsx +++ b/src/view/com/feeds/FeedPage.tsx @@ -23,6 +23,7 @@ import useAppState from 'react-native-appstate-hook' import {logger} from '#/logger' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {useSession} from '#/state/session' export const FeedPage = observer(function FeedPageImpl({ testID, @@ -38,6 +39,7 @@ export const FeedPage = observer(function FeedPageImpl({ renderEndOfFeed?: () => JSX.Element }) { const store = useStores() + const {isSandbox} = useSession() const pal = usePalette('default') const {_} = useLingui() const {isDesktop} = useWebMediaQueries() @@ -140,7 +142,7 @@ export const FeedPage = observer(function FeedPageImpl({ style={[pal.text, {fontWeight: 'bold'}]} text={ <> - {store.session.isSandbox ? 'SANDBOX' : 'Bluesky'}{' '} + {isSandbox ? 'SANDBOX' : 'Bluesky'}{' '} {hasNew && ( <View style={{ @@ -173,7 +175,16 @@ export const FeedPage = observer(function FeedPageImpl({ ) } return <></> - }, [isDesktop, pal.view, pal.text, pal.textLight, store, hasNew, _]) + }, [ + isDesktop, + pal.view, + pal.text, + pal.textLight, + store, + hasNew, + _, + isSandbox, + ]) return ( <View testID={testID} style={s.h100pct}> |