mirror of
https://github.com/f/awesome-chatgpt-prompts.git
synced 2026-04-18 12:10:11 +00:00
The seed script fetches from /prompts.json without the ?full_content=true parameter. The API only returns contentPreview by default, so the content field is undefined, causing PrismaClientValidationError for every prompt. Changes: - Add ?full_content=true to the fetch URL - Make content optional in RemotePrompt interface - Skip prompts without content instead of failing Before: Created 0 prompts (1595 skipped) with validation errors After: Created 1576 prompts (19 skipped - no content)