Skip to content

Commit

Permalink
remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mbund committed Mar 14, 2024
1 parent c1d4550 commit 1a71706
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/layouts/PostDetails.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const {
tags,
readingTime,
} = post.data;
console.log(post.data);
const { Content } = await post.render();
Expand Down
1 change: 0 additions & 1 deletion src/utils/remark-reading-time.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ export function remarkReadingTime() {
const textOnPage = toString(tree);
const readingTime = getReadingTime(textOnPage);
data.astro.frontmatter.readingTime = readingTime.text;
console.log(data.astro.frontmatter);
};
}

0 comments on commit 1a71706

Please sign in to comment.