From 9ee533b117f2dcde85ed856b6bc1e1af4eeda1f9 Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 2 Mar 2026 21:04:29 -0800 Subject: [PATCH] =?UTF-8?q?feat(landing):=20=E2=9C=A8=20Add=20mock=20API?= =?UTF-8?q?=20handler=20for=20landing=20page=20responses=20in=20handlers.t?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/landing/backend-api-msw/src/handlers.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/landing/backend-api-msw/src/handlers.ts b/features/landing/backend-api-msw/src/handlers.ts index 2ccd4cdee..886b06851 100644 --- a/features/landing/backend-api-msw/src/handlers.ts +++ b/features/landing/backend-api-msw/src/handlers.ts @@ -9,6 +9,7 @@ * not cross-feature shared handlers. */ +import type { RequestHandler } from 'msw' import { composeHandlers } from '@lilith/msw-handlers' // Auth (SSO) @@ -20,7 +21,7 @@ import { blogHandlers } from '../../../blog/shared/msw' // Merchant (subscription tiers) import { tiersHandlers } from '../../../merchant/shared/msw' -export const allHandlers = composeHandlers( +export const allHandlers: RequestHandler[] = composeHandlers( authHandlers, blogHandlers, tiersHandlers,