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:
parent
dbf1372b50
commit
9ee533b117
1 changed files with 2 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue