Skip to content

Commit

Permalink
fix prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik committed Oct 13, 2023
1 parent 752df3a commit e2eaa18
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ui/app/api/mirrors/status/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ function getMirrorStatusUrl(mirrorId: string) {
export async function POST(request: Request) {
const { flowJobName } = await request.json();
const url = getMirrorStatusUrl(flowJobName);
console.log(`querying ${url} for flow status.`)
const resp = await fetch(url);
const json = await resp.json();
return new Response(JSON.stringify(json));
Expand Down

0 comments on commit e2eaa18

Please sign in to comment.