diff --git a/src/components/coordkeeper.jsx b/src/components/coordkeeper.jsx index f6f594b..5d52ad7 100644 --- a/src/components/coordkeeper.jsx +++ b/src/components/coordkeeper.jsx @@ -38,14 +38,13 @@ export default function Keeper({ tipo }) { useEffect(() => { const storedCoords = JSON.parse(localStorage.getItem(tipo) || "[]"); - console.log(storedCoords); if (storedCoords) { setCoords(storedCoords); } }, [tipo]); useEffect(() => { - const handlePaste = async (e) => { + const handlePaste = async () => { const text = await navigator.clipboard.readText(); const regex = /- (.*), X: (-?\d+)(?:\s*Y:\s*(-?\d+))?\s*Z:\s*(-?\d+)/; const match = text.match(regex);