Skip to content

Commit b61fdaf

Browse files
committed
remove logs
1 parent afe4f5e commit b61fdaf

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/rehype-onboarding-lines.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ function handle_inline_options(node) {
6666

6767
// Found "integrations: ["
6868
if (lineStr.match(/integrations:\s*\[/)) {
69-
console.log('🎯 Found integrations opening at line', i, ':', lineStr);
7069
// Mark the opening line and hide it by default
7170
line.properties['data-integrations-wrapper'] = 'open';
7271
line.properties.className = [...(line.properties.className || []), 'hidden'];
@@ -75,7 +74,6 @@ function handle_inline_options(node) {
7574
for (let j = i + 1; j < node.children.length; j++) {
7675
const closeStr = toString(node.children[j]).trim();
7776
if (closeStr.includes('],')) {
78-
console.log('🎯 Found integrations closing at line', j, ':', closeStr);
7977
// Mark the closing line and hide it by default
8078
node.children[j].properties['data-integrations-wrapper'] = 'close';
8179
node.children[j].properties.className = [

0 commit comments

Comments
 (0)