Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit dd32eee

Browse files
committed
Remove debug logs
1 parent 4cb772a commit dd32eee

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

gatsby-node.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ exports.createPages = ({ graphql, actions }) => {
9292
});
9393
});
9494
result.data.scanner.edges.forEach(({ node }) => {
95-
console.log(node.frontmatter);
9695
const component = path.resolve("src/templates/integration.js");
9796

9897
let componentName = "";
@@ -119,9 +118,6 @@ exports.createPages = ({ graphql, actions }) => {
119118
componentName = node.frontmatter.path.split("/")[1];
120119
}
121120

122-
console.log("filter");
123-
console.log(`/${componentName}/examples/`);
124-
125121
createPage({
126122
path: `integrations/${node.frontmatter.path}`,
127123
component,

0 commit comments

Comments
 (0)