Im gonna push before I break anything

This commit is contained in:
rift 2023-12-26 17:37:57 -06:00
parent 6372debdff
commit b5b1a2848a
5 changed files with 18 additions and 5 deletions

View file

@ -14,7 +14,7 @@ declare global {
export function ProxyFrame(props: { url: string }) {
// pass the URL encoded with encodeURIcomponent
const localProxy = localStorage.getItem("proxy") || "automatic";
const proxyMode = localStorage.getItem("proxyMode") || "direct";
const proxyMode = localStorage.getItem("proxyMode") || "embed"; // Embed by default
const searchEngine =
localStorage.getItem("searchEngine") || "https://google.com/search?q=%s";
const [ProxiedUrl, setProxiedUrl] = useState<string | undefined>(undefined);