We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05eb7ab commit a4ebd50Copy full SHA for a4ebd50
packages/astro/src/default/components/DownloadButton.tsx
@@ -34,7 +34,7 @@ async function onClick() {
34
const link = document.createElement('a');
35
link.style.display = 'none';
36
link.download = filename;
37
- link.href = URL.createObjectURL(new Blob([data], { type: 'application/zip' }));
+ link.href = URL.createObjectURL(new Blob([data] as any, { type: 'application/zip' }));
38
39
document.body.appendChild(link);
40
link.click();
packages/astro/src/default/components/MetaTags.astro
@@ -1,6 +1,5 @@
1
---
2
import type { MetaTagsConfig } from '@tutorialkit/types';
3
-import { readLogoFile } from '../utils/logo';
4
import { readPublicAsset } from '../utils/publicAsset';
5
6
interface Props {
0 commit comments