Skip to content

Commit a16e380

Browse files
authored
Remove console log
1 parent 19e76fc commit a16e380

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/interop/web-components/drag-n-drop.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export const init = () => {
88

99
window.customElements.define(name, class extends HTMLElement {
1010
connectedCallback() {
11-
console.log(`Hello, from ${name}`)
1211
let sortable = new Sortable(
1312
this.parentNode.querySelectorAll('*[draggable-parent]'),
1413
{
@@ -25,4 +24,4 @@ export const init = () => {
2524
})
2625
}
2726
})
28-
}
27+
}

0 commit comments

Comments
 (0)