Update map.ts
Some checks are pending
Fly Deploy / Pre-deploy checks (push) Waiting to run
Fly Deploy / Test Suite (push) Blocked by required conditions
Fly Deploy / Python SDK Tests (push) Blocked by required conditions
Fly Deploy / JavaScript SDK Tests (push) Blocked by required conditions
Fly Deploy / Go SDK Tests (push) Blocked by required conditions
Fly Deploy / Rust SDK Tests (push) Blocked by required conditions
Fly Deploy / Deploy app (push) Blocked by required conditions
Fly Deploy / Build and publish Python SDK (push) Blocked by required conditions
Fly Deploy / Build and publish JavaScript SDK (push) Blocked by required conditions
Fly Deploy / Build and publish Rust SDK (push) Waiting to run

This commit is contained in:
Nicolas 2024-09-01 19:54:15 -03:00
parent 304b3e752e
commit 86b0477708

View File

@ -30,8 +30,8 @@ export async function mapController(
req.body = mapRequestSchema.parse(req.body);
const limit = req.body.limit ?? 5000;
const limit : number = req.body.limit ?? 5000;
const id = uuidv4();
let links: string[] = [req.body.url];