feat: improve file upload and diplay stuff

This commit is contained in:
Zoe
2026-03-02 00:12:01 -06:00
parent c84f982277
commit 71985c325b
4 changed files with 200 additions and 59 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ const props = defineProps<{
id: string;
name: string;
mimeType: string;
status: 'pending' | 'uploaded';
status: 'uploading' | 'uploaded' | 'error';
url: string;
}
}>();