Skip to content

Commit a4ebd50

Browse files
authored
chore: lint errors (#462)
1 parent 05eb7ab commit a4ebd50

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/astro/src/default/components/DownloadButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async function onClick() {
3434
const link = document.createElement('a');
3535
link.style.display = 'none';
3636
link.download = filename;
37-
link.href = URL.createObjectURL(new Blob([data], { type: 'application/zip' }));
37+
link.href = URL.createObjectURL(new Blob([data] as any, { type: 'application/zip' }));
3838

3939
document.body.appendChild(link);
4040
link.click();

packages/astro/src/default/components/MetaTags.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
import type { MetaTagsConfig } from '@tutorialkit/types';
3-
import { readLogoFile } from '../utils/logo';
43
import { readPublicAsset } from '../utils/publicAsset';
54
65
interface Props {

0 commit comments

Comments
 (0)