Skip to content

Commit

Permalink
fix: gas card default selection
Browse files Browse the repository at this point in the history
  • Loading branch information
jagnani73 committed Jun 16, 2024
1 parent 4f0daa4 commit 4f5095c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Molecules/GasCard/GasCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { Button } from "@/components/ui/button";
import { Card } from "@/components/ui/card";

export const GasCard: React.FC<GasCardProps> = ({ chain_name }) => {
const [isErc20, setIsErc20] = useState<boolean>(false);
const [isErc20, setIsErc20] = useState<boolean>(true);
const [maybeResult, setMaybeResult] = useState<
Option<{
erc: GasPricesResponse;
Expand Down

0 comments on commit 4f5095c

Please sign in to comment.