Skip to content

Commit

Permalink
fix: #8113 dw share loading bug (#8472)
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcvay authored Feb 7, 2023
1 parent 33a6510 commit 61aff7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/data-warehouse/src/components/data/shares-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ export const SharesTable: FC<SharesTableProps> = ({ shares, refreshShares }) =>
intent="danger"
onClick={handleDeleteShare(deleteShare, refreshShares, id)}
disabled={isLoading}
loading={isLoading}
loading={deletingShare}
>
Delete Share
</Button>
<Button
intent="primary"
onClick={handleRefreshShare(refreshShare, refreshShares, id)}
disabled={isLoading}
loading={isLoading}
loading={refreshingShare}
>
Refresh Share
</Button>
Expand Down

0 comments on commit 61aff7f

Please sign in to comment.