Skip to content

Commit 70c1aaa

Browse files
netlify is working again. Just had to clear cache on Netlify
1 parent 283c8ce commit 70c1aaa

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.netlify/state.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"siteId": "d0391ba3-241e-40c2-8762-639bed998ab4"
3+
}

packages/gatsby-theme/gatsby-node.js

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ exports.createPages = async ({ graphql, actions }) => {
4646
}
4747
});
4848
}
49-
console.log(overviewPageSlug);
5049
createPage({
5150
path: tutorialPath,
5251
component: TutorialLayout, // node.fileAbsolutePath,

packages/gatsby-theme/src/components/TutorialSidebar.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ export const TabletSidebar: React.FunctionComponent<SidebarProps> = ({
3535
tutorialTitle,
3636
chapters,
3737
}) => {
38-
// console.log(tutorialTitle);
39-
// console.log(chapters);
38+
console.log(tutorialTitle);
39+
console.log(chapters);
4040
return (
4141
<div>
4242
<Image

packages/gatsby-theme/src/components/templates/Tutorial.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ const TutorialLayout: React.FunctionComponent<TutorialLayoutProps> = ({
1818
if (!data) {
1919
return null;
2020
}
21-
console.log(Object.keys(data), JSON.stringify(data.tutorialTitle, null, 2));
2221
const { pageTitle } = data!.mdx!.frontmatter!;
2322
const tutorialTitle = optionalChaining(() => data!.tutorialTitle!.frontmatter!.tutorialTitle!);
2423
const chapters = optionalChaining(() => data!.pageTitles!.edges!.map(

0 commit comments

Comments
 (0)