Skip to content

Commit 873b54b

Browse files
committed
add comma
1 parent e0d6ef3 commit 873b54b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/api/repo/[graph]/[node]/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export async function POST(request: NextRequest, { params }: { params: { graph:
2525
repo,
2626
src,
2727
dest
28-
})
28+
}),
2929
cache: 'no-store'
3030
})
3131

app/api/repo/[graph]/neighbors/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function POST(request: NextRequest, { params }: { params: { graph:
2020
headers: {
2121
"Content-Type": 'application/json',
2222
"Authorization": token,
23-
}
23+
},
2424
cache: 'no-store'
2525
})
2626

app/api/repo/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export async function GET() {
99
method: 'GET',
1010
headers: {
1111
"Authorization": token,
12-
}
12+
},
1313
cache: 'no-store'
1414
})
1515

0 commit comments

Comments
 (0)