mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
reverted and sticking with the pnpm lock of main to have a stable 4.1.5
This commit is contained in:
Generated
+1454
-1205
File diff suppressed because it is too large
Load Diff
@@ -232,7 +232,7 @@ function generateSingleValue(
|
||||
}
|
||||
|
||||
case 'polygon': {
|
||||
let points = Array.from({ length: 5 }, () => [
|
||||
const points = Array.from({ length: 5 }, () => [
|
||||
faker.location.longitude(),
|
||||
faker.location.latitude()
|
||||
]);
|
||||
|
||||
@@ -65,7 +65,7 @@ export async function gzipUpload(files: FileList) {
|
||||
data: f.buffer
|
||||
}))
|
||||
);
|
||||
const blob = new Blob([tar as Uint8Array<ArrayBuffer>], { type: 'application/gzip' });
|
||||
const blob = new Blob([tar], { type: 'application/gzip' });
|
||||
const file = new File([blob], 'deployment.tar.gz', {
|
||||
type: 'application/gzip'
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user