diff --git a/frontend/src/components/Layout.jsx b/frontend/src/components/Layout.jsx
index 730e785..68ae68b 100644
--- a/frontend/src/components/Layout.jsx
+++ b/frontend/src/components/Layout.jsx
@@ -42,7 +42,7 @@ function CurrentMenuTitle() {
return (
/
@@ -51,7 +51,7 @@ function CurrentMenuTitle() {

)}
{menu.title}
@@ -66,13 +66,7 @@ function ThemeToggle() {
const toggleTheme = useThemeStore((s) => s.toggleTheme)
const isLight = theme === 'light'
- const handleToggle = () => {
- if (typeof document !== 'undefined' && document.startViewTransition) {
- document.startViewTransition(() => toggleTheme())
- } else {
- toggleTheme()
- }
- }
+ const handleToggle = () => toggleTheme()
return (