From e6c1b13f46b67b9a233f7d25c9da5375543caa9a Mon Sep 17 00:00:00 2001 From: Scrum4Me Agent <30029041+madhura68@users.noreply.github.com> Date: Fri, 15 May 2026 04:40:07 +0200 Subject: [PATCH] feat(ideas): stuur activeProductId mee bij snel idee aanmaken Co-Authored-By: Claude Sonnet 4.6 --- components/ideas/idea-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ideas/idea-list.tsx b/components/ideas/idea-list.tsx index 1010125..546e54d 100644 --- a/components/ideas/idea-list.tsx +++ b/components/ideas/idea-list.tsx @@ -250,7 +250,7 @@ export function IdeaList({ ideas, products, isDemo, activeProductId }: IdeaListP return } startTransition(async () => { - const r = await createIdeaAction({ title, description: quickDescription.trim() || null, product_id: null }) + const r = await createIdeaAction({ title, description: quickDescription.trim() || null, product_id: activeProductId }) if ('error' in r) { toast.error(r.error) return