From ddbd1b72da3a5c717915a859aa32579d75b6ebbf 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..fce36a376 100644 --- a/src/components/WithdrawPage.tsx +++ b/src/components/WithdrawPage.tsx @@ -1,4 +1,5 @@ import { + Alert, Box, Button, Checkbox, @@ -127,6 +128,9 @@ const WithdrawPage = (props: Props): ReactElement | null => { {t("withdraw")} + + You must withdraw by selecting the "Combo" option. + {`${t( @@ -165,7 +169,6 @@ const WithdrawPage = (props: Props): ReactElement | null => { 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} /> ) })}