fix: don't pre-fetch sounds

This commit is contained in:
Maze Winther
2025-09-01 16:31:03 +02:00
parent 971f9d35d7
commit e2bd8d1e09
3 changed files with 77 additions and 93 deletions
@@ -1,13 +1,9 @@
"use client";
import { useGlobalPrefetcher } from "@/components/providers/global-prefetcher";
export default function EditorLayout({
children,
}: {
children: React.ReactNode;
}) {
useGlobalPrefetcher();
return <div>{children}</div>;
}
"use client";
export default function EditorLayout({
children,
}: {
children: React.ReactNode;
}) {
return <div>{children}</div>;
}