diff --git a/src/components/Browser.tsx b/src/components/Browser.tsx index 91b4ce5..058e5e6 100644 --- a/src/components/Browser.tsx +++ b/src/components/Browser.tsx @@ -45,7 +45,7 @@ export function BrowserStateProvider({ }: { children: React.ReactElement; }) { - const [url, setUrl] = useState("about:blank"); + const [url, setUrl] = useState(""); return ( @@ -190,5 +190,10 @@ export function Browser() { boot(status, auth); }, []); - return ; + return ( + + ); }