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 2a4db1d commit 3c35506Copy full SHA for 3c35506
src/apifetch.ts
@@ -153,14 +153,7 @@ const executeApiFetch: ExecuteApiFetch = function (
153
// Fuzzy
154
let fuzzy = settings?.fuzzy;
155
if (fuzzy === 'retry') {
156
- // First call, non fuzzy
157
- if (fuzzyRetry !== true) {
158
- fuzzy = false;
159
- }
160
- // Second call, fuzzy
161
- else {
162
- fuzzy = true;
163
+ fuzzy = fuzzyRetry === true; // true on retry (second call), false on initial call
164
}
165
166
// GET Parameters
0 commit comments