Add staging env
This commit is contained in:
parent
38ed9a7943
commit
210082be93
11 changed files with 41 additions and 14 deletions
|
@ -8,6 +8,7 @@ import {useStores} from '../../state'
|
|||
import {FeedModel} from '../../state/models/feed-view'
|
||||
import {ScreenParams} from '../routes'
|
||||
import {s} from '../lib/styles'
|
||||
import {BUILD} from '../../env'
|
||||
|
||||
export const Home = observer(function Home({
|
||||
visible,
|
||||
|
@ -53,7 +54,10 @@ export const Home = observer(function Home({
|
|||
|
||||
return (
|
||||
<View style={s.flex1}>
|
||||
<ViewHeader title="Bluesky" subtitle="Private Beta" />
|
||||
<ViewHeader
|
||||
title="Bluesky"
|
||||
subtitle={`Private Beta${BUILD !== 'prod' ? ` [${BUILD}]` : ''}`}
|
||||
/>
|
||||
<Feed key="default" feed={defaultFeedView} scrollElRef={scrollElRef} />
|
||||
<FAB icon="pen-nib" onPress={onComposePress} />
|
||||
</View>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue