delete console logs and udpdate rss feed

This commit is contained in:
Juan Carlos Manzanero Domínguez 2024-07-01 13:03:32 -06:00
parent 9441e58da6
commit 60136383ef
3 changed files with 1 additions and 5 deletions

View File

@ -46,7 +46,7 @@ export default function Footer() {
variant="link" variant="link"
className="flex flex-col justify-center" className="flex flex-col justify-center"
> >
<a target="_blank" href="https://juancman.dev/rss.xml"> <a target="_blank" href="https://www.juancman.dev/rss.xml">
<RssIcon className="w-6" /> <RssIcon className="w-6" />
RSS feed RSS feed
</a> </a>

View File

@ -753,7 +753,6 @@ export default function EditPost(props: TPostProps) {
}), }),
}); });
const json = await res.json(); const json = await res.json();
console.log(json);
if (!res.ok) { if (!res.ok) {
toast(json.message); toast(json.message);

View File

@ -35,7 +35,6 @@ export async function GET(context: any) {
for await (const img of images) { for await (const img of images) {
const src = img.getAttribute("src")!; const src = img.getAttribute("src")!;
console.log(src);
if (src.startsWith("@/")) { if (src.startsWith("@/")) {
const prefixRemoved = src.replace("@/", ""); const prefixRemoved = src.replace("@/", "");
@ -112,8 +111,6 @@ export async function GET(context: any) {
}); });
} }
console.log(items);
return rss({ return rss({
title: "juancmandev", title: "juancmandev",
description: "Welcome to my domain, stranger.", description: "Welcome to my domain, stranger.",