Remove leftover code

This commit is contained in:
Andrew Kingston 2022-08-08 14:29:12 +01:00
parent 3320a33b9b
commit fbbba2e32e
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)
})