From 397ac960de0ce1193a9abaf3f4904bf8020d43be Mon Sep 17 00:00:00 2001 From: yerimi00 Date: Fri, 20 Feb 2026 11:24:08 +0900 Subject: [PATCH] =?UTF-8?q?hotfix=20:=20=EB=8D=B0=EB=AA=A8=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=20id=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/routes/matching/suggest/create/create-campaign-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/matching/suggest/create/create-campaign-content.tsx b/app/routes/matching/suggest/create/create-campaign-content.tsx index 7ce7452..f1e1915 100644 --- a/app/routes/matching/suggest/create/create-campaign-content.tsx +++ b/app/routes/matching/suggest/create/create-campaign-content.tsx @@ -161,7 +161,7 @@ export default function CreateCampaignContent() { const brandId = brandIdParam ? Number(brandIdParam) - : proposalData?.brandId || 1; + : (type === "new" ? 0 : (proposalData?.brandId ?? 1)); const campaignId = type === "existing" ? (campaignIdParam ? Number(campaignIdParam) : (proposalData?.campaignId || null))