Skip to content

Commit

Permalink
Merge pull request #168 from dappforce/deploy/leaderboard
Browse files Browse the repository at this point in the history
Update "post earned" wording
  • Loading branch information
olehmell authored Jan 12, 2024
2 parents 3f3f2a6 + 3cd5e3c commit 52f774e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/posts/view-post/PostRewardStat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { useSelectPostReward } from 'src/rtk/features/activeStaking/hooks'
export type PostRewardStatProps = ComponentProps<'div'> & { postId: string }

export default function PostRewardStat({ postId, ...props }: PostRewardStatProps) {
const postEarn = useSelectPostReward(postId)
if (!postEarn?.isNotZero) return null
const reward = useSelectPostReward(postId)
if (!reward?.isNotZero) return null

return (
<div
Expand All @@ -18,15 +18,15 @@ export default function PostRewardStat({ postId, ...props }: PostRewardStatProps
>
<span className='d-flex align-items-center GapMini ColorMuted'>
<TbCoins className='FontNormal' />
<span>Post earned:</span>
<span>Rewards earned:</span>
</span>
<span className='FontWeightSemibold'>
<FormatBalance
currency='SUB'
decimals={10}
precision={2}
withMutedDecimals={false}
value={postEarn.amount}
value={reward.amount}
/>
</span>
</div>
Expand Down

0 comments on commit 52f774e

Please sign in to comment.