Skip to content

Commit

Permalink
no console log
Browse files Browse the repository at this point in the history
  • Loading branch information
lyleschemmerling committed Aug 14, 2023
1 parent e1e7cc5 commit 12e9b00
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion astro/src/pages/blog/category/[category]/[...page].astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export async function getStaticPaths({ paginate }) {
const { page, categoryName } = Astro.props;
const { category } = Astro.params;
console.log(categoryName)
---

<Layout title={startCase(categoryName) + " posts"}
Expand Down
2 changes: 0 additions & 2 deletions astro/src/pages/blog/feed.xml.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { getCollection } from 'astro:content';
import rss from '@astrojs/rss';

function convertToRSS(post) {
// console.log("Abc");
// console.log(post.data.publish_date);
return {
title: post.data.title || 'uh-oh, no title',
pubDate: post.data.updated_date || post.data.publish_date || '2024-08-11',
Expand Down

0 comments on commit 12e9b00

Please sign in to comment.