diff --git a/src/mirage/index.ts b/src/mirage/index.ts index 00077808ed..67ea016842 100644 --- a/src/mirage/index.ts +++ b/src/mirage/index.ts @@ -399,7 +399,7 @@ export const startMirage = ({ environment = 'development' } = {}) => { }, ]); this.get('api/v2/probes', () => []); - this.post('/api/beta/matchExpressions', (_, request) => { + this.post('api/beta/matchExpressions', (_, request) => { const attr = JSON.parse(request.requestBody); if (!attr.matchExpression || !attr.targets) { return new Response(400);