From 705fd3fa15270b91b20fbdace772171bfb872675 Mon Sep 17 00:00:00 2001 From: Vojta Holik Date: Thu, 9 Jan 2025 13:06:09 +0100 Subject: [PATCH] chore(aih): make nextUp list type be the default --- apps/ai-hero/src/lib/lists-query.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/ai-hero/src/lib/lists-query.ts b/apps/ai-hero/src/lib/lists-query.ts index 9c8ddd31..890d83b6 100644 --- a/apps/ai-hero/src/lib/lists-query.ts +++ b/apps/ai-hero/src/lib/lists-query.ts @@ -33,6 +33,7 @@ export async function createList(input: { fields: { title: input.title, description: input.description, + type: 'nextUp', state: 'draft', visibility: 'unlisted', slug: `${slugify(input.title)}~${guid()}`,