1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Remove leftover code

This commit is contained in:
Andrew Kingston 2022-08-08 14:29:12 +01:00
parent 8d13928d67
commit 43b6fd3055
2 changed files with 0 additions and 4 deletions

View file

@ -91,9 +91,6 @@
}
const updateFetch = email => {
if (email == null && $fetch.query.email == null) {
return
}
fetch.update({
query: {
email,

View file

@ -35,7 +35,6 @@ export const debounce = (callback, minDelay = 1000) => {
clearTimeout(timeout)
}
timeout = setTimeout(async () => {
console.log("timeout reached!")
resolve(await callback(...params))
}, minDelay)
})