From 62c00205533b46e37069e1cf5f1298512d0d491e 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 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/WithdrawPage.tsx b/src/components/WithdrawPage.tsx index 6b156810b..7c0ed9add 100644 --- a/src/components/WithdrawPage.tsx +++ b/src/components/WithdrawPage.tsx @@ -1,4 +1,5 @@ import { + Alert, Box, Button, Checkbox, @@ -133,6 +134,10 @@ const WithdrawPage = (props: Props): ReactElement | null => { "withdrawPercentage", )} (%):`} + + You must withdraw using the "Combo" option for + paused pools. + { control={} label="Combo" data-testid="withdrawPercentageCombo" - checked={true} /> {tokensData.map((t) => { return ( @@ -176,7 +180,6 @@ const WithdrawPage = (props: Props): ReactElement | null => { // disabled={poolData?.isPaused} label={t.symbol} data-testid="withdrawTokenRadio" - disabled={true} /> ) })}