diff --git a/src/components/debug/DebugWrapper.tsx b/src/components/debug/DebugWrapper.tsx deleted file mode 100644 index 0aa0fe9..0000000 --- a/src/components/debug/DebugWrapper.tsx +++ /dev/null @@ -1,14 +0,0 @@ -"use client"; - -import { usePreferences } from "@/contexts/PreferencesContext"; -import { DebugInfo } from "./DebugInfo"; - -export function DebugWrapper() { - const { preferences } = usePreferences(); - - if (!preferences.debug) { - return null; - } - - return ; -}