Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsonlive committed Oct 4, 2023
1 parent 1d6539d commit bb54490
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ <h2 id="header">Select an Airtable view as a CSV file</h2>
updateProgressBar(0, columns.length);
for (let i = 0; i < columns.length; i++) {
if (i % 30 == 0 && i != 0) {
showFooterMessage("Taking a little nap so that we don't get rate limited, will start back up in 15 seconds 😴");
await new Promise(resolve => setTimeout(resolve, 1000 * 15))
showFooterMessage("Taking a little nap so that we don't get rate limited, will start back up in 30 seconds 😴");
await new Promise(resolve => setTimeout(resolve, 1000 * 30))
showFooterMessage("Texts are sending, go to dialpad 🐥💼");
}
let row = columns[i];
Expand Down Expand Up @@ -470,7 +470,7 @@ <h2 id="header">Select an Airtable view as a CSV file</h2>
await new Promise(resolve => setTimeout(resolve, 100));
}

// await new Promise(resolve => setTimeout(resolve, 1000));
await new Promise(resolve => setTimeout(resolve, 2000));
}

continueButton.style.display = 'none';
Expand Down

0 comments on commit bb54490

Please sign in to comment.