Skip to content

Commit

Permalink
Use a const for nextCursor
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonh committed Nov 2, 2024
1 parent 7599bba commit b74b1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/jobs/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export const exportJob = async (jobData: ExportJobData) => {
const size = items.length
// write data to the csv file
if (size > 0) {
let nextCursor = await uploadToBucket(
const nextCursor = await uploadToBucket(
userId,
items,
cursor,
Expand Down

0 comments on commit b74b1d4

Please sign in to comment.