From f7dc3b3f48d288ad23e437c4efa071762f415c2f Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Mon, 1 Dec 2025 16:48:50 +0300 Subject: [PATCH] remove console logs Signed-off-by: Uncle Fatso --- package.json | 2 +- src/components/ui/select.tsx | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index e8c13d7..9940fbe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghost-wallet", - "version": "0.1.6", + "version": "0.1.7", "description": "Browser extension to manage ghost blockchain light clients.", "main": "dist/src/index.js", "author": "Uncle f4ts0 ", diff --git a/src/components/ui/select.tsx b/src/components/ui/select.tsx index 008e344..f92c085 100644 --- a/src/components/ui/select.tsx +++ b/src/components/ui/select.tsx @@ -58,13 +58,11 @@ const Select = ({ return React.cloneElement(child, { onPointerEnter: (...args: any[]) => { handlePointerEnterContent() - console.log("item enter") const fn = (child.props as any).onPointerEnter if (fn) fn(...args) }, onPointerLeave: (...args: any[]) => { handlePointerLeaveContent() - console.log("item leave") const fn = (child.props as any).onPointerLeave if (fn) fn(...args) }, @@ -80,7 +78,6 @@ const Select = ({ return React.cloneElement(child, { onPointerDown: (e: PointerEvent | React.PointerEvent) => { handleItemActivate(); - console.log("item active") const fn = (child.props as any).onPointerDown; if (fn) fn(e); },