Skip to content

Commit

Permalink
fix: network status initial state
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzkirstein committed Mar 18, 2024
1 parent 069b9ac commit 457c46e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/@shared/NetworkStatus/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function NetworkStatus({
}: {
className?: string
}): ReactElement {
const [showNetworkAlert, setShowNetworkAlert] = useState(true)
const [showNetworkAlert, setShowNetworkAlert] = useState(false)
const [network, setNetwork] = useState<string>()
const { appConfig } = useMarketMetadata()
const { chain } = useNetwork()
Expand Down

0 comments on commit 457c46e

Please sign in to comment.