Skip to content

Commit

Permalink
feat(bridge): prove time 1 hour and update 1min
Browse files Browse the repository at this point in the history
  • Loading branch information
shellteo committed Mar 22, 2024
1 parent a8006de commit d2702fa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/bridge/src/components/Faq/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const faqList: Array<AccordionItemType> = [
content: (
<div className="text-type-secondary max-w-[90%]">
<Typography className="mb-4">
Initiating a deposit typically completes in around ~1 minutes.
Initiating a deposit typically completes in around ~1 minute.
</Typography>
<Typography className="mb-4">
Conversely, withdrawals, due to the intricacies of Optimistic Rollups,
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/src/components/bridge/TransactionPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export default function TransactionPanel({
className="text-xs text-white pl-2"
>
{direction === Direction.Deposit
? `~1 minutes`
? `~1 minute`
: `~${formatTime(
challengePeriod && challengePeriod < 1200
? 1200
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/src/components/bridge/dialogue/Default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default function Default({
label="Time to transfer"
value={
direction === Direction.Deposit
? "~1 minutes"
? "~1 minute"
: `~${formatTime(
challengePeriod && challengePeriod < 1200
? 1200
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/src/components/bridge/dialogue/WithdrawV2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export default function Default({
) : (
<No n="2" />
)}
<span>Wait ~30 minutes</span>
<span>Wait ~1 hours</span>
{withdrawStatus === WithdrawStatus.SENDING_TX && <IconLoading />}
</div>
<DottedLine />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export function useWaitForRelay({ direction }: { direction: Direction }) {
// <div>
// <div>Deposit initiated</div>
// <div className="text-sm">
// Assets will be available on Mantle in ~1 mins
// Assets will be available on Mantle in ~1 min
// </div>
// </div>
// ),
Expand Down

0 comments on commit d2702fa

Please sign in to comment.