Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update "post earned" wording #168

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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