Get new frontend to type check clean

Epic undertaking.
This commit is contained in:
Eli Ribble 2026-03-31 14:52:53 +00:00
parent 6f9a511874
commit 21b7b68f50
No known key found for this signature in database
52 changed files with 1616 additions and 1126 deletions

View file

@ -102,13 +102,13 @@
import CSVUpload from "@/components/CSVUpload.vue";
import { router } from "@/router";
function onError(err) {
function onError(err: Error) {
console.error("CSV upload error", err);
}
function onFileSelected(file) {
function onFileSelected(file: File) {
console.log("file selected", file);
}
function onUploadSuccess(data) {
function onUploadSuccess(data: any) {
console.log("upload success", data);
router.push("/_" + data.uri);
}