fix: lint

This commit is contained in:
Kazuki Yamada
2025-08-24 16:41:33 +09:00
parent 7ff2e00715
commit cc540eed3a
@@ -16,7 +16,7 @@ export function useZipProcessor() {
if (err) {
reject(new Error(`Failed to create ZIP file: ${err.message}`));
} else {
const zipBlob = new Blob([data], { type: 'application/zip' });
const zipBlob = new Blob([data as BlobPart], { type: 'application/zip' });
resolve(new File([zipBlob], `${folderName}.zip`, { type: 'application/zip' }));
}
});