From 457c46ee203978539305abee52d7e8b569d34e77 Mon Sep 17 00:00:00 2001 From: Moritz Kirstein Date: Mon, 18 Mar 2024 16:08:14 +0100 Subject: [PATCH] fix: network status initial state --- src/components/@shared/NetworkStatus/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/@shared/NetworkStatus/index.tsx b/src/components/@shared/NetworkStatus/index.tsx index 8d65ef78..73ad4f8e 100644 --- a/src/components/@shared/NetworkStatus/index.tsx +++ b/src/components/@shared/NetworkStatus/index.tsx @@ -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() const { appConfig } = useMarketMetadata() const { chain } = useNetwork()