Remove leftover code
This commit is contained in:
parent
3320a33b9b
commit
fbbba2e32e
|
@ -91,9 +91,6 @@
|
|||
}
|
||||
|
||||
const updateFetch = email => {
|
||||
if (email == null && $fetch.query.email == null) {
|
||||
return
|
||||
}
|
||||
fetch.update({
|
||||
query: {
|
||||
email,
|
||||
|
|
|
@ -35,7 +35,6 @@ export const debounce = (callback, minDelay = 1000) => {
|
|||
clearTimeout(timeout)
|
||||
}
|
||||
timeout = setTimeout(async () => {
|
||||
console.log("timeout reached!")
|
||||
resolve(await callback(...params))
|
||||
}, minDelay)
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue