From 4f5095c74504db97d91c977a389ad960eb19a959 Mon Sep 17 00:00:00 2001 From: Yashvardhan Jagnani Date: Sun, 16 Jun 2024 16:25:38 +0530 Subject: [PATCH] fix: gas card default selection --- src/components/Molecules/GasCard/GasCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Molecules/GasCard/GasCard.tsx b/src/components/Molecules/GasCard/GasCard.tsx index e2cbb4e8..39240520 100644 --- a/src/components/Molecules/GasCard/GasCard.tsx +++ b/src/components/Molecules/GasCard/GasCard.tsx @@ -14,7 +14,7 @@ import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; export const GasCard: React.FC = ({ chain_name }) => { - const [isErc20, setIsErc20] = useState(false); + const [isErc20, setIsErc20] = useState(true); const [maybeResult, setMaybeResult] = useState< Option<{ erc: GasPricesResponse;