Skip to content

Commit dabc4ac

Browse files
committed
remove console logs
1 parent 635ac63 commit dabc4ac

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/client/packages/idom-client-react/src/element-utils.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@ export function createElementAttributes(model, sendEvent) {
2626
}
2727
}
2828

29-
const attrs = Object.fromEntries(
30-
Object.entries(attributes).map(normalizeAttribute)
31-
);
32-
console.log(attrs);
33-
return attrs;
29+
return Object.fromEntries(Object.entries(attributes).map(normalizeAttribute));
3430
}
3531

3632
function createEventHandler(sendEvent, eventSpec) {

0 commit comments

Comments
 (0)