"examples/usage/vscode:/vscode.git/clone" did not exist on "f424e76d96e9cdc580cf648d7fdc75853a8530e1"
Commit ed8c0b23 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac

parent c8f44b73
......@@ -34,7 +34,6 @@
let debounceTimer;
const debounceSubmitHandler = async () => {
// debounce 1 second
if (debounceTimer) {
clearTimeout(debounceTimer);
}
......@@ -42,7 +41,7 @@
// Set a new timer
debounceTimer = setTimeout(() => {
submitHandler();
}, 1000); // 1 second debounce
}, 500); // 0.5 second debounce
};
const getUserValves = async () => {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment