Skip to content

Commit f0773b8

Browse files
committed
chore: update msw handlers
1 parent ac88773 commit f0773b8

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

src/mocks/msw/handlers.ts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -106,19 +106,7 @@ export const handlers = [
106106
() => new HttpResponse(null, { status: 204 }),
107107
),
108108
http.get(mswEndpoint("/api/v1/workspaces/:workspace_name/muxes"), () =>
109-
HttpResponse.json([
110-
{
111-
provider_id: "openai",
112-
model: "gpt-3.5-turbo",
113-
matcher_type: "file_regex",
114-
matcher: ".*\\.txt",
115-
},
116-
{
117-
provider_id: "anthropic",
118-
model: "davinci",
119-
matcher_type: "catch_all",
120-
},
121-
]),
109+
HttpResponse.json([]),
122110
),
123111
http.put(
124112
mswEndpoint("/api/v1/workspaces/:workspace_name/muxes"),

0 commit comments

Comments
 (0)