Skip to content

Commit b26e467

Browse files
Remove network rewards and plus minus
1 parent 5e7fc4d commit b26e467

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

packages/app/features/affiliate/screen.tsx

+6-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const AffiliateScreen = () => {
2727
<YStack width={'100%'} gap="$4" pb="$6">
2828
<XStack alignItems="center" width={'100%'} jc="flex-end" gap="$6">
2929
<LinkableButton href="/leaderboard" fontWeight={'bold'}>
30-
Check Leaderboard
30+
Leaderboard
3131
</LinkableButton>
3232
</XStack>
3333
<StatsCards />
@@ -46,7 +46,6 @@ const StatsCards = () => {
4646
$gtLg={{ fd: 'row' }}
4747
flexWrap="wrap"
4848
ai="flex-start"
49-
jc="space-around"
5049
gap="$3"
5150
mb="$4"
5251
width={'100%'}
@@ -65,6 +64,8 @@ const StatsCards = () => {
6564
</>
6665
)}
6766
</Card>
67+
{/*
68+
Need to rework this
6869
<Card $gtLg={{ flexShrink: 0, flexBasis: '32%' }} w="100%" mih={152}>
6970
<CardHeader>
7071
<Label color={'$color10'}>Network Rewards Share</Label>
@@ -92,7 +93,7 @@ const StatsCards = () => {
9293
</Paragraph>
9394
</>
9495
)}
95-
</Card>
96+
</Card> */}
9697
</Stack>
9798
{affiliateStatsError && (
9899
<Paragraph theme={'red_active'}>{affiliateStatsError?.message}</Paragraph>
@@ -226,15 +227,15 @@ const ReferralsListRow = ({ referral }) => {
226227
</Stack>
227228
</YStack>
228229
</XStack>
229-
<Stack als="flex-start">
230+
{/* <Stack als="flex-start">
230231
<Paragraph
231232
theme={referral.send_plus_minus >= 0 ? 'green_active' : 'red_active'}
232233
size={'$8'}
233234
lh={'$1'}
234235
>
235236
{referral.send_plus_minus >= 0 ? '+' : '-'}
236237
</Paragraph>
237-
</Stack>
238+
</Stack> */}
238239
</XStack>
239240
</Link>
240241
</Card>

0 commit comments

Comments
 (0)