add back accidently removed line of code
This commit is contained in:
parent
a9aa68c7bf
commit
52e826e4ec
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
// make sure we only fetch once, unless API Key is changed
|
// make sure we only fetch once, unless API Key is changed
|
||||||
if (isApiKeyValid === undefined || apiKey !== lastApiKey) {
|
if (isApiKeyValid === undefined || apiKey !== lastApiKey) {
|
||||||
|
lastApiKey = apiKey
|
||||||
// svelte reactivity was causing a requst to get fired mutiple times
|
// svelte reactivity was causing a requst to get fired mutiple times
|
||||||
// so, we make everything await the same promise, if one exists
|
// so, we make everything await the same promise, if one exists
|
||||||
if (!fetchApiKeyPromise) {
|
if (!fetchApiKeyPromise) {
|
||||||
|
|
Loading…
Reference in New Issue