diff --git a/src/components/FilteredPromptList.astro b/src/components/FilteredPromptList.astro index bdc6207..7ba2b6f 100644 --- a/src/components/FilteredPromptList.astro +++ b/src/components/FilteredPromptList.astro @@ -3,8 +3,6 @@ import PromptCard from './PromptCard.astro'; const { prompts = [] } = Astro.props; -// console.log("📋 FilteredPromptList loaded with prompts:", prompts.length, prompts); - type Prompt = { slug: string; title: string; @@ -17,7 +15,9 @@ type Prompt = { }; --- -
+Created: {formatDate(created_at)} • Updated: {formatDate(updated_at)}
-📝 Misc data, unused currently
+📝 {notes}
Prompt not found.
Created: ${prompt.createdAt} • Updated: ${prompt.updatedAt}
-📝 ${prompt.notes}
-