diff --git a/frontend/src/components/layout/layout.tsx b/frontend/src/components/layout/layout.tsx index e7780cd..8f49e72 100644 --- a/frontend/src/components/layout/layout.tsx +++ b/frontend/src/components/layout/layout.tsx @@ -8,9 +8,7 @@ const BaseLayout = ({ children }: { children: React.ReactNode }) => { const { backgroundImage, title } = useAppContext(); useEffect(() => { - if (title !== "Tinyauth") { - document.title = title + " - Tinyauth"; - } + document.title = title; }, [title]); return (