Skip to content

Commit

Permalink
fix: chain selector initial state
Browse files Browse the repository at this point in the history
  • Loading branch information
jagnani73 committed Apr 23, 2024
1 parent 5c9fca8 commit d7aafc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Molecules/ChainSelector/ChainSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const ChainSelector: React.FC<ChainSelectorProps> = ({
onChangeChain,
}) => {
const { chains, selectedChain, setSelectedChain } = useGoldRush();
const [open, setOpen] = useState<boolean>(!false);
const [open, setOpen] = useState<boolean>(false);

const dropdownChains = useMemo<ChainItem[] | null>(() => {
if (!chains) {
Expand Down

0 comments on commit d7aafc7

Please sign in to comment.