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}
/>
)
})}