Skip to content

Commit

Permalink
feat: update space character
Browse files Browse the repository at this point in the history
  • Loading branch information
toniocodo committed Jul 4, 2024
1 parent 0806a18 commit 0dfe37a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions libs/prime/restake/src/views/ClaimView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,7 @@ const ClaimCard = ({ request, ...rest }: ClaimCardProps) => {
const targetDate = add(new Date(request.timestamp), { days: 7 });
const isClaimDisabled =
request.blockNumber + WAITING_BLOCK_AMOUNT > (blockNumber ?? 0);
const available = isClaimDisabled ? 0n : BigInt(request.assetAmount);
const pending = isClaimDisabled ? BigInt(request.assetAmount) : 0n;
const availableConverted =
(price ?? 0) * +formatUnits(available, tokens.mainnet.OETH.decimals);
const pendingConverted =
(price ?? 0) * +formatUnits(pending, tokens.mainnet.OETH.decimals);

Expand Down
2 changes: 1 addition & 1 deletion libs/prime/restake/src/views/WithdrawView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ const Form = ({
<InfoTooltipLabel
tooltipLabel={intl.formatMessage({
defaultMessage:
'Funds withdrawn from EigenLayer go through a 7-day escrow period before being able to be claimed.',
'Funds withdrawn from EigenLayer go through a 7-day escrow period before being able to be claimed.',
})}
>
{intl.formatMessage({
Expand Down

0 comments on commit 0dfe37a

Please sign in to comment.