This commit is contained in:
2023-05-17 10:17:26 +01:00
parent 3a8125f0bb
commit 154098b5dc
5 changed files with 79 additions and 1 deletions

View File

@ -25,6 +25,7 @@ import Avatar from "Element/Avatar";
import { useUserProfile } from "Hooks/useUserProfile";
import { profileLink } from "Util";
import { getCurrentSubscription } from "Subscription";
import Toaster from "Toaster";
export default function Layout() {
const location = useLocation();
@ -170,6 +171,7 @@ export default function Layout() {
</>
)}
{window.localStorage.getItem("debug") && <SubDebug />}
<Toaster />
</div>
);
}