From ec6d8aa9fc553f8854bd5e5d61a9377a9dfca25e Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Sun, 4 Feb 2024 16:42:18 +0100 Subject: [PATCH] Enable testnet filter by default (#142) --- 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