Skip to content

Commit

Permalink
add timeout check
Browse files Browse the repository at this point in the history
  • Loading branch information
HavierD committed Feb 12, 2025
1 parent ee56788 commit e446f85
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pages/detail-page/subpages/side-cards/DownloadDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ const DownloadDialog: React.FC<DownloadDialogProps> = ({ open, setOpen }) => {
if (!uuid) {
return;
}

// make sure the email is not capital-sensitive
email = email.toLowerCase();

const request: DatasetDownloadRequest = {
inputs: {
uuid: uuid,
Expand Down

0 comments on commit e446f85

Please sign in to comment.