Fix lints
Some checks failed
/ Build App (pull_request) Failing after 25s

This commit is contained in:
Valentin Brandl 2024-07-30 17:40:35 +02:00
parent 2dbd724622
commit 6061e9bbdf
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -5,8 +5,7 @@
export let form: ActionData; export let form: ActionData;
let selectedName: String; let selectedName: string;
let toCreate = '';
let files: FileList; let files: FileList;
let sending = false; let sending = false;
@ -26,7 +25,7 @@
); );
}; };
async function loadNames(keyword: String) { async function loadNames() {
const url = './names'; const url = './names';
const response = await fetch(url); const response = await fetch(url);
return await response.json(); return await response.json();