From bfaa3d4b651f48bf2ab6be3a59592f8f31bea5a2 Mon Sep 17 00:00:00 2001 From: Erik Tiekstra Date: Tue, 24 Jun 2025 07:31:05 +0000 Subject: [PATCH] fix(SW-2265): Removed campaign identifier from campaign page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Approved-by: Matilda Landström --- .../lib/graphql/Query/CampaignPage/CampaignPage.graphql | 1 - .../server/routers/contentstack/campaignPage/output.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/apps/scandic-web/lib/graphql/Query/CampaignPage/CampaignPage.graphql b/apps/scandic-web/lib/graphql/Query/CampaignPage/CampaignPage.graphql index 39ca5a823..0430111a4 100644 --- a/apps/scandic-web/lib/graphql/Query/CampaignPage/CampaignPage.graphql +++ b/apps/scandic-web/lib/graphql/Query/CampaignPage/CampaignPage.graphql @@ -11,7 +11,6 @@ query GetCampaignPage($locale: String!, $uid: String!) { campaign_page(uid: $uid, locale: $locale) { title - campaign_identifier heading subheading preamble { diff --git a/apps/scandic-web/server/routers/contentstack/campaignPage/output.ts b/apps/scandic-web/server/routers/contentstack/campaignPage/output.ts index 42c10243c..270bbd448 100644 --- a/apps/scandic-web/server/routers/contentstack/campaignPage/output.ts +++ b/apps/scandic-web/server/routers/contentstack/campaignPage/output.ts @@ -102,7 +102,6 @@ export const campaignPageSchema = z .object({ campaign_page: z.object({ title: z.string(), - campaign_identifier: z.string().nullish(), hero: heroSchema, heading: z.string(), subheading: z.string().nullish(),