diff --git a/client/components/mma/cancel/cancellationSaves/digipack/DigiSubSaves.stories.tsx b/client/components/mma/cancel/cancellationSaves/digipack/DigiSubSaves.stories.tsx index b990bf8b0..26301e025 100644 --- a/client/components/mma/cancel/cancellationSaves/digipack/DigiSubSaves.stories.tsx +++ b/client/components/mma/cancel/cancellationSaves/digipack/DigiSubSaves.stories.tsx @@ -42,7 +42,7 @@ export const EligibleForDiscount: StoryObj = { }, parameters: { msw: [ - rest.post('/api/discounts/check-eligibility', (_req, res, ctx) => { + rest.post('/api/discounts/preview-discount', (_req, res, ctx) => { return res(ctx.json({ valid: true })); }), ], @@ -61,7 +61,7 @@ export const IneligibleForDiscount: StoryObj = { }, }, msw: [ - rest.post('/api/discounts/check-eligibility', (_req, res, ctx) => { + rest.post('/api/discounts/preview-discount', (_req, res, ctx) => { return res(ctx.json({ valid: false })); }), ],