There was an error while loading. Please reload this page.
1 parent 4d5523c commit b540ed0Copy full SHA for b540ed0
1 file changed
src/lib/bulk/bulkOperations.ts
@@ -1,4 +1,4 @@
1
-import { apiClient } from '@lib/api';
+import { apiClient } from '@/lib/api';
2
3
export type BulkOperationType = 'create' | 'update' | 'delete';
4
@@ -49,9 +49,7 @@ const DEFAULT_CONCURRENCY = 10;
49
class Semaphore {
50
private capacity: number;
51
private active = 0;
52
- private waiters: Array<(
53
- () => void
54
- OK> = [];
+ private waiters: Array<() => void> = [];
55
56
constructor(capacity: number) {
57
this.capacity = Math.max(1, Math.floor(capacity));
0 commit comments