quick cleanup

This commit is contained in:
2023-04-12 19:20:03 +02:00
parent 13254b24dd
commit ebdd1c2c0c
2 changed files with 15 additions and 27 deletions

View File

@@ -10,9 +10,6 @@
};
const dispatch = createEventDispatcher();
function focus(el) {
el.focus();
}
(() => {
document.onkeydown = (e) => {
e = e || window.event;
@@ -28,7 +25,7 @@
};
})();
async function submit() {
dispatch('delete', {id: delete_runner.id})
dispatch("delete", { id: delete_runner.id });
}
</script>