From db63df1809554c2a8301d8f00337684fe48a6672 Mon Sep 17 00:00:00 2001 From: Tyler McRae Date: Sun, 5 Jan 2025 20:46:09 -0700 Subject: [PATCH] added more detailed instructions to specify that the export function's initial return should be removed before seeding the database. --- dashboard/starter-example/app/seed/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/starter-example/app/seed/route.ts b/dashboard/starter-example/app/seed/route.ts index ce31c7af..cc9f17d7 100644 --- a/dashboard/starter-example/app/seed/route.ts +++ b/dashboard/starter-example/app/seed/route.ts @@ -104,7 +104,7 @@ export async function GET() { return Response.json({ message: - 'Uncomment this file and remove this line. You can delete this file when you are finished.', + 'Uncomment all lines in this file and then remove the return Response.json that contains this message. You can delete this file when you are finished.', }); // try { // await client.sql`BEGIN`;