Skip to content

Commit 48f889b

Browse files
fixed build
1 parent b9ae13c commit 48f889b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/users/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function Users() {
5959
try {
6060
const blob = await downloadCSV();
6161

62-
const url = window.URL.createObjectURL(blob as Blob);
62+
const url = window.URL.createObjectURL(blob );
6363
const a = document.createElement("a");
6464
a.href = url;
6565
a.download = "users.csv"; // Set the filename for the downloaded file

0 commit comments

Comments
 (0)