From 5b44a677c6318de355138885da4382ea1fc70d17 Mon Sep 17 00:00:00 2001 From: Sunil Srivatsa Date: Fri, 20 Oct 2023 10:53:03 -0400 Subject: [PATCH] display an alert to withdraw using combo --- src/components/WithdrawPage.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/WithdrawPage.tsx b/src/components/WithdrawPage.tsx index 6b156810b..401a53ddc 100644 --- a/src/components/WithdrawPage.tsx +++ b/src/components/WithdrawPage.tsx @@ -1,4 +1,5 @@ import { + Alert, Box, Button, Checkbox, @@ -154,6 +155,9 @@ const WithdrawPage = (props: Props): ReactElement | null => { {formStateData.error?.message || ""} + + Withdraw using the Combo option below. + { control={} label="Combo" data-testid="withdrawPercentageCombo" - checked={true} /> {tokensData.map((t) => { return ( @@ -176,7 +179,6 @@ const WithdrawPage = (props: Props): ReactElement | null => { // disabled={poolData?.isPaused} label={t.symbol} data-testid="withdrawTokenRadio" - disabled={true} /> ) })}