From 7a157a85a766ad081384c331e533f152565a0b68 Mon Sep 17 00:00:00 2001 From: Matthew Bunday Date: Fri, 9 Feb 2024 11:26:12 -0500 Subject: [PATCH] Add a more obvious button to the transaction page within withdraw flow (#317) --- .../WithdrawProgressBar.tsx | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/apps/bridge/src/components/WithdrawProgressBar/WithdrawProgressBar.tsx b/apps/bridge/src/components/WithdrawProgressBar/WithdrawProgressBar.tsx index 04c0ec3655..53c44e21df 100644 --- a/apps/bridge/src/components/WithdrawProgressBar/WithdrawProgressBar.tsx +++ b/apps/bridge/src/components/WithdrawProgressBar/WithdrawProgressBar.tsx @@ -51,15 +51,20 @@ const BarStatusToBadgeStatuses: Record = { const DisclaimerContent: Record = { REQUEST_SENT: ( - <> - In order to minimize security risk, withdrawals using the official Base Bridge take up to{' '} - {challengeWindow}. After your withdrawal request is proposed onchain (within an hour) you must - verify and complete the transaction in order to access your funds, on{' '} - - the transactions page +
+

+ In order to minimize security risk, withdrawals using the official Base Bridge take up to{' '} + {challengeWindow}. After your withdrawal request is proposed onchain (within an hour) you + must verify and complete the transaction in order to access your funds, on{' '} + + the transactions page + + . +

+ + Go to Transactions - . - +
), VERIFYING: ( <> @@ -93,7 +98,7 @@ export function WithdrawProgressBar({ status }: WithdrawProgressBarProps) { Takes up to 1 hr - {DisclaimerContent[status]} +
{DisclaimerContent[status]}
Learn more