We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9ae13c commit 48f889bCopy full SHA for 48f889b
1 file changed
src/app/users/page.tsx
@@ -59,7 +59,7 @@ export default function Users() {
59
try {
60
const blob = await downloadCSV();
61
62
- const url = window.URL.createObjectURL(blob as Blob);
+ const url = window.URL.createObjectURL(blob );
63
const a = document.createElement("a");
64
a.href = url;
65
a.download = "users.csv"; // Set the filename for the downloaded file
0 commit comments