Skip to content

Commit

Permalink
fix: clean up spinner and disabled state on download page (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cafe137 committed Jan 25, 2022
1 parent 1310deb commit a406e0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/files/DownloadActionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ export function DownloadActionBar({
<SwarmButton onClick={onDownload} iconType={Download} disabled={loading} loading={loading}>
Download
</SwarmButton>
<SwarmButton onClick={onCancel} iconType={X} disabled={loading} loading={loading} cancel>
<SwarmButton onClick={onCancel} iconType={X} disabled={loading} cancel>
Close
</SwarmButton>
</ExpandableListItemActions>
<Box mb={1} mr={1}>
<SwarmButton onClick={onUpdateFeed} iconType={Bookmark}>
<SwarmButton onClick={onUpdateFeed} iconType={Bookmark} disabled={loading}>
Update Feed
</SwarmButton>
</Box>
Expand Down

0 comments on commit a406e0f

Please sign in to comment.