From dfefc5d879572e111a69a806fbcb598e797b0137 Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Sun, 21 Jan 2024 19:16:37 +0100 Subject: [PATCH] Enable testnet filter by default --- src/context/SearchContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/SearchContext.tsx b/src/context/SearchContext.tsx index 32e00af4a..482e66946 100644 --- a/src/context/SearchContext.tsx +++ b/src/context/SearchContext.tsx @@ -19,7 +19,7 @@ export const SearchProvider = ({ children }) => { const [query, setQuery] = useState(""); const [showTestnets, setShowTestnets] = useState( - defaults?.showTestnets ?? false + defaults?.showTestnets ?? true ); const [showDeprecated, setShowDeprecated] = useState( defaults?.showDeprecated ?? false