Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
seungpark committed Jan 10, 2025
1 parent a69006e commit ce7a295
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/OfflineDownloadModal/DownloadModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,9 @@ const DownloadModal = ({ open, setOpen }: ModalProps) => {

<Box className={footerStyling}>
<Button onClick={() => setOpen(false)}>Cancel</Button>
<Button disabled={!rowSelection || !Object.keys(rowSelection)?.length} onClick={onDownload}>Download</Button>
<Button disabled={!rowSelection || !Object.keys(rowSelection)?.length} onClick={onDownload}>
Download
</Button>
</Box>
</Modal>
);
Expand Down

0 comments on commit ce7a295

Please sign in to comment.