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

fix: rounding issue #352

Merged
merged 4 commits into from
Sep 13, 2024
Merged
Changes from 3 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
13 changes: 7 additions & 6 deletions frontend/components/MainPage/sections/RewardsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ const Loader = () => (
</Flex>
);

const getFormattedReward = (reward: number | undefined) =>
reward === undefined ? '--' : `${balanceFormat(reward, 2)}`;

const DisplayRewards = () => {
const { availableRewardsForEpochEth, isEligibleForRewards } = useReward();
const { isBalanceLoaded } = useBalance();

const reward =
availableRewardsForEpochEth === undefined
? '--'
: `~${balanceFormat(availableRewardsForEpochEth, 2)}`;
const reward = getFormattedReward(availableRewardsForEpochEth);

return (
<CardSection vertical gap={8} padding="16px 24px" align="start">
Expand Down Expand Up @@ -90,9 +90,10 @@ const NotifyRewardsModal = () => {
useEffect(() => {
if (!canShowNotification) return;

const reward = getFormattedReward(firstRewardRef.current);
showNotification?.(
'Your agent earned its first staking rewards!',
`Congratulations! Your agent just got the first reward for you! Your current balance: ${firstRewardRef.current} OLAS`,
'First rewards earned!',
`Congratulations! Your agent just got the first reward for you! Your current balance: ${reward} OLAS`,
);
}, [canShowNotification, showNotification]);

Expand Down
Loading