diff --git a/source/frontend/src/mocks/msw/handlers.ts b/source/frontend/src/mocks/msw/handlers.ts index 5d5dfef7bd..1ff88ac932 100644 --- a/source/frontend/src/mocks/msw/handlers.ts +++ b/source/frontend/src/mocks/msw/handlers.ts @@ -43,7 +43,10 @@ export const handlers = [ http.get('http://localhost:3000/ogs-internal/ows', ({ request }) => { const search = new URL(request.url).search; - if (search.includes('typeName=plan_footprint') && search.includes('service=wfs')) { + if ( + search.includes('typeName=ISS_PROVINCIAL_PUBLIC_HIGHWAY') && + search.includes('service=wfs') + ) { return HttpResponse.json(getMockISSResult(), { status: 200 }); } }),