feat(landing): Add mock API handler for landing page responses in handlers.ts

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-03-02 21:04:29 -08:00
parent dbf1372b50
commit 9ee533b117

View file

@ -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,