Changed the default search engine

This commit is contained in:
incognitotgt 2023-12-31 18:37:44 -05:00
parent e9b95c8e49
commit e4e7a69280

View file

@ -22,7 +22,7 @@ export function ProxyFrame(props: { url: string }) {
const localProxy = localStorage.getItem("proxy") || "automatic"; const localProxy = localStorage.getItem("proxy") || "automatic";
const proxyMode = localStorage.getItem("proxyMode") || "embed"; const proxyMode = localStorage.getItem("proxyMode") || "embed";
const searchEngine = const searchEngine =
localStorage.getItem("searchEngine") || "https://google.com/search?q=%s"; localStorage.getItem("searchEngine") || "https://duckduckgo.com/?q=%s";
const [ProxiedUrl, setProxiedUrl] = useState<string | undefined>(undefined); const [ProxiedUrl, setProxiedUrl] = useState<string | undefined>(undefined);
//@ts-ignore //@ts-ignore