Skip to content

Commit 3c3db52

Browse files
committed
Fix fmt
1 parent c5f758a commit 3c3db52

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

site/src/testHelpers/handlers.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export const handlers = [
220220
return HttpResponse.json(M.MockBuilds);
221221
}),
222222
http.get("/api/v2/workspaces/:workspaceId/port-share", () => {
223-
return HttpResponse.json(M.MockSharedPortsResponse)
223+
return HttpResponse.json(M.MockSharedPortsResponse);
224224
}),
225225
http.get(
226226
"/api/v2/users/:username/workspace/:workspaceName/builds/:buildNumber",
@@ -361,6 +361,4 @@ export const handlers = [
361361
http.get("/api/v2/integrations/jfrog/xray-scan", () => {
362362
return new HttpResponse(null, { status: 404 });
363363
}),
364-
365-
366364
];

0 commit comments

Comments
 (0)