Please let this be the end of it all

This commit is contained in:
Michał Gdula 2023-06-24 21:56:34 +00:00
parent 4d912d314c
commit c732af8122
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ function getSearch() {
hint.innerHTML = '';
data.forEach(user => {
let el = document.createElement('button');
const el = document.createElement('button');
el.innerHTML = user;
el.onmousedown = function (event) {
event.preventDefault();

View file

@ -1,5 +1,5 @@
function yeetSession(id) {
let form = new FormData();
const form = new FormData();
form.append('session', id);
fetch('/api/tokens', {