remove console logs

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2025-12-01 16:48:50 +03:00
parent 99621f0046
commit f7dc3b3f48
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 1 additions and 4 deletions

View File

@ -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 <f4ts0@ghostchain.io>",

View File

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