diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 503f6d1..4a96a52 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2,6 +2,7 @@ import { createEffect, Show } from "solid-js" import { Router, Route, useLocation, useNavigate } from "@solidjs/router" import type { Component } from "solid-js" import AppShell from "@/components/AppShell" +import Toast from "@/components/Toast" import Home from "@/pages/Home" import RelayList from "@/pages/relays/RelayList" import RelayNew from "@/pages/relays/RelayNew" @@ -31,6 +32,7 @@ function Layout(props: { children?: any }) { {props.children}}> {props.children} + ) } diff --git a/frontend/src/components/Navbar.tsx b/frontend/src/components/Navbar.tsx index 7466802..34306ea 100644 --- a/frontend/src/components/Navbar.tsx +++ b/frontend/src/components/Navbar.tsx @@ -7,7 +7,7 @@ export default function Navbar() { const picture = useProfilePicture(() => account()?.pubkey) return ( -