updated types

This commit is contained in:
ArnabChatterjee20k
2025-09-17 11:18:05 +05:30
parent b6835e9ea4
commit 0d43ca0ea2
+1 -1
View File
@@ -65,7 +65,7 @@ export async function gzipUpload(files: FileList) {
data: f.buffer
}))
);
const blob = new Blob([tar], { type: 'application/gzip' });
const blob = new Blob([tar as Uint8Array<ArrayBuffer>], { type: 'application/gzip' });
const file = new File([blob], 'deployment.tar.gz', {
type: 'application/gzip'
});