From 09d8e0c089b0e8ef1f642119b1272c392841c2ff Mon Sep 17 00:00:00 2001 From: Hailey Date: Fri, 7 Jun 2024 10:40:38 -0700 Subject: [PATCH] add "joined this week" --- src/screens/StarterPack/Main/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/screens/StarterPack/Main/index.tsx b/src/screens/StarterPack/Main/index.tsx index 0a26bb40ef..426d7441c2 100644 --- a/src/screens/StarterPack/Main/index.tsx +++ b/src/screens/StarterPack/Main/index.tsx @@ -17,7 +17,7 @@ import {ProfileSubpageHeader} from 'view/com/profile/ProfileSubpageHeader' import {CenteredView} from 'view/com/util/Views' import {FeedsList} from '#/screens/StarterPack/Main/FeedsList' import {ProfilesList} from '#/screens/StarterPack/Main/ProfilesList' -import {atoms as a} from '#/alf' +import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' import {ArrowOutOfBox_Stroke2_Corner0_Rounded as ArrowOutOfBox} from '#/components/icons/ArrowOutOfBox' @@ -101,6 +101,7 @@ function Header({ starterPack: AppBskyGraphDefs.StarterPackView }) { const {_} = useLingui() + const t = useTheme() const {currentAccount} = useSession() const qrCodeDialogControl = useDialogControl() @@ -178,10 +179,12 @@ function Header({ )} - + {record.description} + + {starterPack.joinedAllTimeCount} people joined this week! + - )