Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 9, 2025
1 parent 05bdba2 commit f53f183
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const DatasetTypeLabel: React.FC<DatasetTypeLabelProps> = ({ datasetType }) => {
) : (
<Icons.ConsoleSqlOutlined iconSize={SIZE} />
);
const labelType: 'primary' | 'success' =
const labelType: 'primary' | 'secondary' =
datasetType === 'physical' ? 'primary' : 'secondary';

return (
Expand Down

0 comments on commit f53f183

Please sign in to comment.