diff --git a/src/components/ThemeIcon.tsx b/src/components/ThemeIcon.tsx index 2def417..d0fbd8a 100644 --- a/src/components/ThemeIcon.tsx +++ b/src/components/ThemeIcon.tsx @@ -29,7 +29,7 @@ function ThemeIcon({ inApp }: Props) { }; return ( - ); diff --git a/src/components/dialogs/SaveLitematic.tsx b/src/components/dialogs/SaveLitematic.tsx index a8de029..08e1a13 100644 --- a/src/components/dialogs/SaveLitematic.tsx +++ b/src/components/dialogs/SaveLitematic.tsx @@ -148,7 +148,7 @@ function SaveLitematic({ close, registerSubmit, dialogKeyHandler }: DialogProps) // Write to file const bytes = await nbt.write(data, { compression: "gzip" }); - const blob = new Blob([bytes], { type: "application/x-gzip" }); + const blob = new Blob([new Uint8Array(bytes)], { type: "application/x-gzip" }); const url = URL.createObjectURL(blob); setLoading(false); diff --git a/src/components/dialogs/SaveSchem.tsx b/src/components/dialogs/SaveSchem.tsx index f1a0102..3487795 100644 --- a/src/components/dialogs/SaveSchem.tsx +++ b/src/components/dialogs/SaveSchem.tsx @@ -150,7 +150,7 @@ function SaveSchem({ close, registerSubmit, dialogKeyHandler }: DialogProps) { // Write to file const bytes = await nbt.write(data, { compression: "gzip" }); - const blob = new Blob([bytes], { type: "application/x-gzip" }); + const blob = new Blob([new Uint8Array(bytes)], { type: "application/x-gzip" }); const url = URL.createObjectURL(blob); setLoading(false); diff --git a/src/pages/PrivacyPolicy.tsx b/src/pages/PrivacyPolicy.tsx index ad7ebbc..e2bb546 100644 --- a/src/pages/PrivacyPolicy.tsx +++ b/src/pages/PrivacyPolicy.tsx @@ -28,10 +28,6 @@ function PrivacyPolicy() { .
  • Blockmatic also does not use cookies.
  • -
  • - Blockmatic is hosted by Vercel. I can not guarantee that Vercel does not collect any data, therefore I recommend reviewing their privacy - policy for clarification. -
  • Please also note that this privacy policy may be updated occasionally. It is recommended to review it from time to time.

    diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 98c2c17..0000000 --- a/vercel.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "routes": [{ "src": "/[^.]+", "dest": "/", "status": 200 }] -}