diff --git a/src/components/Browser.tsx b/src/components/Browser.tsx index b4a5f5f..91b4ce5 100644 --- a/src/components/Browser.tsx +++ b/src/components/Browser.tsx @@ -147,7 +147,7 @@ export function Navigator() { const url = new URL(input); setUrl( - `/browse/${url.hostname}${url.pathname}${url.search}${url.hash}` || + `${url.hostname}${url.pathname}${url.search}${url.hash}` || "about:blank", ); } catch (e) { @@ -190,5 +190,5 @@ export function Browser() { boot(status, auth); }, []); - return ; + return ; }