-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85181d0
commit 28c70fa
Showing
3 changed files
with
52 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
"install-hooks": "mookme init --only-hook --skip-types-selection", | ||
"lint:fix": "turbo run lint:fix", | ||
"lint": "turbo run lint", | ||
"patch-package": "patch-package --patch-dir=packages/mobile/patches && patch-package --patch-dir=packages/web/patches && patch-package --patch-dir=packages/identity-service/patches", | ||
"patch-package": "patch-package && patch-package --patch-dir=packages/mobile/patches && patch-package --patch-dir=packages/web/patches && patch-package --patch-dir=packages/identity-service/patches", | ||
"postinstall": "bash ./scripts/postinstall.sh", | ||
"preinstall": "bash ./scripts/preinstall.sh", | ||
"turbo-link": "turbo login && turbo link", | ||
|
@@ -113,4 +113,4 @@ | |
"webpack": "5.88.2" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
diff --git a/node_modules/@trpc/client/dist/httpBatchLink-78d2f90a.js b/node_modules/@trpc/client/dist/httpBatchLink-78d2f90a.js | ||
index b83ca37..98b3945 100644 | ||
--- a/node_modules/@trpc/client/dist/httpBatchLink-78d2f90a.js | ||
+++ b/node_modules/@trpc/client/dist/httpBatchLink-78d2f90a.js | ||
@@ -115,7 +115,7 @@ var httpUtils = require('./httpUtils-b0a649f7.js'); | ||
pendingItems.push(item); | ||
}); | ||
if (!dispatchTimer) { | ||
- dispatchTimer = setTimeout(dispatch); | ||
+ dispatchTimer = setTimeout(dispatch, 500); | ||
} | ||
const cancel = ()=>{ | ||
item.aborted = true; | ||
diff --git a/node_modules/@trpc/client/dist/httpBatchLink-abfe4d66.js b/node_modules/@trpc/client/dist/httpBatchLink-abfe4d66.js | ||
index ac88ce5..195fa42 100644 | ||
--- a/node_modules/@trpc/client/dist/httpBatchLink-abfe4d66.js | ||
+++ b/node_modules/@trpc/client/dist/httpBatchLink-abfe4d66.js | ||
@@ -117,7 +117,7 @@ function dataLoader(batchLoader) { | ||
pendingItems.push(item); | ||
}); | ||
if (!dispatchTimer) { | ||
- dispatchTimer = setTimeout(dispatch); | ||
+ dispatchTimer = setTimeout(dispatch, 500); | ||
} | ||
const cancel = () => { | ||
item.aborted = true; | ||
diff --git a/node_modules/@trpc/client/dist/httpBatchLink-cee1f56c.mjs b/node_modules/@trpc/client/dist/httpBatchLink-cee1f56c.mjs | ||
index cf9a88a..74083eb 100644 | ||
--- a/node_modules/@trpc/client/dist/httpBatchLink-cee1f56c.mjs | ||
+++ b/node_modules/@trpc/client/dist/httpBatchLink-cee1f56c.mjs | ||
@@ -113,7 +113,7 @@ import { r as resolveHTTPLinkOptions, g as getUrl, j as jsonHttpRequester } from | ||
pendingItems.push(item); | ||
}); | ||
if (!dispatchTimer) { | ||
- dispatchTimer = setTimeout(dispatch); | ||
+ dispatchTimer = setTimeout(dispatch, 500); | ||
} | ||
const cancel = ()=>{ | ||
item.aborted = true; |