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); },