Skip to content

Commit 8694d51

Browse files
authored
fix: default initial timeout delay for polling reduced to 0 seconds (#744)
1 parent c82944a commit 8694d51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/polling.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface PollingOptions<T> {
2424
}
2525

2626
const DEFAULT_OPTIONS: Partial<PollingOptions<any>> = {
27-
initialDelayMs: 1000,
27+
initialDelayMs: 0,
2828
pollingIntervalMs: 1000,
2929
};
3030

0 commit comments

Comments
 (0)