Skip to content

Commit c3f9fa2

Browse files
committed
REMOVE LOG
1 parent a174b12 commit c3f9fa2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ export async function POST(request: NextRequest, { params }: { params: { graph:
44

55
const nodeIds = (await request.json()).nodeIds.map((id: string) => Number(id));
66
const graphId = params.graph;
7+
78
try {
8-
console.log(nodeIds, graphId);
9-
109
const result = await fetch(`${process.env.BACKEND_URL}/get_neighbors`, {
1110
method: 'POST',
1211
body: JSON.stringify({ node_ids: nodeIds, repo: graphId }),

0 commit comments

Comments
 (0)