Skip to content

Commit 5c0ed3d

Browse files
committed
fix types
1 parent 2027cc6 commit 5c0ed3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/shared/src/client/demo/demo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ export function Demo() {
5959
imagePlugin(),
6060
],
6161
},
62-
).then((blob: Blob) => {
63-
const url = URL.createObjectURL(blob);
62+
).then((blob) => {
63+
const url = URL.createObjectURL(blob as Blob);
6464
const link = document.createElement("a");
6565
link.href = url;
6666
link.download = "my-document.docx";

0 commit comments

Comments
 (0)