Formatting with trailing comma

This commit is contained in:
2024-08-17 15:45:52 +02:00
parent 48948a180a
commit cfb5564830
9 changed files with 23 additions and 23 deletions

View File

@ -69,7 +69,7 @@ export const actions = {
});
return {
success: true
success: true,
};
}
},
};

View File

@ -13,7 +13,7 @@
const siPrefixes = new Map([
[1_000_000, 'M'],
[1_000, 'k']
[1_000, 'k'],
]);
const fileSize = (files: FileList) => {
const size = Array.from(files)