Skip to content

Commit

Permalink
Forgot to comment out debugging code 💀
Browse files Browse the repository at this point in the history
  • Loading branch information
UnsignedArduino committed Apr 11, 2024
1 parent 90db887 commit 2667ad6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pages/blog/[filename].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import React from "react";
import { createBreadCrumbSegment } from "@/components/Layout/layout";
import BlogPost from "@/components/Blog/Post/Post";
import MakeCodeArcadeBlockRendererContext from "@/components/MakeCodeArcade/Blocks/RendererContext";
import ThemedSyntaxHighlighter from "@/components/Themed/SyntaxHighlighter";

type BlogProps = {
variables: { relativePath: string };
Expand Down Expand Up @@ -41,9 +40,9 @@ export default function BlogPage(props: BlogProps) {
createBreadCrumbSegment(data.post.title, props.filename),
]}
>
<ThemedSyntaxHighlighter language="json">
{JSON.stringify(data.post.body, null, 2)}
</ThemedSyntaxHighlighter>
{/*<ThemedSyntaxHighlighter language="json">*/}
{/* {JSON.stringify(data.post.body, null, 2)}*/}
{/*</ThemedSyntaxHighlighter>*/}
<MakeCodeArcadeBlockRendererContext>
<div id={`blogPost${data.post.title}`}>
<BlogPost data={data} />
Expand Down

0 comments on commit 2667ad6

Please sign in to comment.