Skip to content

Commit

Permalink
[pkg/template,#163][xs]: fix show comments prop
Browse files Browse the repository at this point in the history
  • Loading branch information
khalilcodes committed Feb 3, 2023
1 parent 120fcbc commit e983f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/template/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function MyApp({ Component, pageProps }) {
const showComments =
pageProps.showComments ??
siteConfig?.comments?.pages?.includes(pageProps._raw?.sourceFileDir) ??
true;
false;

// TODO maybe use computed fields for showEditLink and showToc to make this even cleaner?
const layoutProps = {
Expand Down

0 comments on commit e983f4e

Please sign in to comment.