This commit is contained in:
Hailey
2024-06-11 22:29:11 -07:00
parent 23de3d754e
commit ad2fcd0070
3 changed files with 13 additions and 16 deletions
@@ -12,7 +12,7 @@ import {useLingui} from '@lingui/react'
import {cleanError} from '#/lib/strings/errors'
import {useTheme} from '#/lib/ThemeContext'
import {logger} from '#/logger'
import {isNative} from '#/platform/detection'
import {isNative, isWeb} from '#/platform/detection'
import {usePalette} from 'lib/hooks/usePalette'
import {useActorStarterPacksQuery} from 'state/queries/actor-starter-packs'
import {usePreferencesQuery} from 'state/queries/preferences'
@@ -149,7 +149,7 @@ export const ProfileStarterPacks = React.forwardRef<
<StarterPackCard
starterPack={item}
type="list"
hideTopBorder={index === 0}
hideTopBorder={!isWeb && index === 0}
/>
)
}
+2 -2
View File
@@ -148,7 +148,7 @@ function LandingScreenInner({
<Trans>Join Bluesky now</Trans>
</ButtonText>
</Button>
{!!joinedWeekCount && joinedWeekCount >= -1 && (
{joinedWeekCount && joinedWeekCount >= 25 && (
<Text
style={[
a.font_bold,
@@ -156,7 +156,7 @@ function LandingScreenInner({
a.text_center,
t.atoms.text_contrast_medium,
]}>
180 joined this week!
{joinedWeekCount} joined this week!
</Text>
)}
<Divider />
+9 -12
View File
@@ -1,7 +1,7 @@
import React from 'react'
import {Pressable, View} from 'react-native'
import {AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api'
import {msg, Plural, Trans} from '@lingui/macro'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
import {NativeStackScreenProps} from '@react-navigation/native-stack'
@@ -209,17 +209,14 @@ function Header({
</ProfileSubpageHeader>
<View style={[a.px_md, a.py_lg, a.gap_md]}>
<Text style={[a.text_md]}>{record.description}</Text>
<Text style={[a.font_bold, a.text_md, t.atoms.text_contrast_medium]}>
<Trans>
{starterPack.joinedAllTimeCount || 0}{' '}
<Plural
value={starterPack.joinedAllTimeCount || 0}
one="person has"
other="people have"
/>{' '}
joined this starter pack!
</Trans>
</Text>
{starterPack.joinedWeekCount && starterPack.joinedWeekCount >= 25 ? (
<Text style={[a.font_bold, a.text_md, t.atoms.text_contrast_medium]}>
<Trans>
{starterPack.joinedAllTimeCount || 0} people have used this
starter pack!
</Trans>
</Text>
) : null}
</View>
<QrCodeDialog control={qrCodeDialogControl} starterPack={starterPack} />
</>