chore: Update dist

This commit is contained in:
GitHub Actions
2025-07-31 22:07:21 +00:00
committed by kellertk
parent 9f25b942f3
commit be798e597e
2 changed files with 1 additions and 4 deletions
Generated Vendored
-1
View File
@@ -48178,7 +48178,6 @@ async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, ba
}
// It's retryable, so sleep and retry.
await sleep(Math.random() * (2 ** retries * base));
// biome-ignore lint/style/noParameterAssign: This is a loop variable
retries += 1;
if (retries >= maxRetries) {
throw err;