We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9e3ddf commit 0f53629Copy full SHA for 0f53629
libs/hooks/debounce/src/lib/debounce-hook.ts
@@ -161,7 +161,7 @@ export class DebounceHook<T extends FlagValue = FlagValue> implements Hook {
161
const cachedStageResult = got[stage];
162
// throw cached errors
163
if (cachedStageResult instanceof CachedError) {
164
- throw got;
+ throw cachedStageResult;
165
}
166
if (cachedStageResult === true) {
167
// already ran this stage for this key and is still in the debounce period
0 commit comments