diff --git a/components/utils/CoordDebugger.tsx b/components/utils/CoordDebugger.tsx deleted file mode 100644 index 3c4fc8b8..00000000 --- a/components/utils/CoordDebugger.tsx +++ /dev/null @@ -1,30 +0,0 @@ -"use client"; -import { create } from "zustand"; - -export let useCoordState = create(() => ({ - coords: [] as { x: number; y: number; color?: string }[], -})); - -export function CoordDebugger() { - let coords = useCoordState((s) => s.coords); - return ( - <> - {coords.map((coord, index) => ( -
- ))} - > - ); -}