diff --git a/src/components/Swap/SwapHeader.tsx b/src/components/Swap/SwapHeader.tsx index 1e816555..fa0e41d1 100644 --- a/src/components/Swap/SwapHeader.tsx +++ b/src/components/Swap/SwapHeader.tsx @@ -35,11 +35,13 @@ export default function SwapHeader({ chainId, trade, active, + showConfig, }: { autoSlippage?: number; chainId?: number; trade?: boolean; - active?: string; + active?: string; + showConfig: boolean; }) { const theme = useTheme(); const fiatOnRampButtonEnabled = true; @@ -63,9 +65,12 @@ export default function SwapHeader({ )} - + {showConfig ? + ( + + ) : + (false)} + ); }