Skip to content

Commit

Permalink
fix: timer and text
Browse files Browse the repository at this point in the history
  • Loading branch information
tuul-wq committed Feb 10, 2025
1 parent 2d5a3f8 commit 0b7f8ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/ui/molecules/AmountDetails/AmountDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ export const AmountDetails = ({
<div className="mt-4 grid grid-cols-[auto,1fr] rounded-lg border border-border-danger bg-[#FFE2E0] p-4">
<Icon name="ExclamationMark" size={28} />
<BodyText align="left" className="text-text-danger">
The balance that remains after sending your amount is less than the minimal network deposit (
{toFormattedBalance(deposit, asset.precision).value} {asset.symbol}), please choose a different amount or
use Max instead.
The balance that would remain on your account after sending this amount of tokens is less than the network
minimum deposit ({toFormattedBalance(deposit, asset.precision).value} {asset.symbol}). To proceed either
send less tokens, or select the Use MAX option.
</BodyText>
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion app/ui/molecules/PasswordReset/PasswordForgotten.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const PasswordForgotten = ({ onClose, onSubmit }: Props) => {
onPress={handleSubmit}
>
<MediumTitle className="text-white">
Delete Backup <Countdown initValue={15} onFinish={() => setIsDisabled(false)} />
Delete Backup <Countdown initValue={60} onFinish={() => setIsDisabled(false)} />
</MediumTitle>
</Button>
<Button className="h-[50px] w-full rounded-full bg-bg-input" onPress={handleClose}>
Expand Down

0 comments on commit 0b7f8ab

Please sign in to comment.