Skip to content

Commit

Permalink
fix(view): 불필요한 return 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
lxxmnmn committed Aug 27, 2024
1 parent da314f8 commit c0a5d1b
Showing 1 changed file with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,14 @@ const SelectedClusterGroup = () => {
}}
onClose={closeClusterGroup}
>
{selectedClusters.map((selectedCluster) => {
return (
<li key={selectedCluster.clusterId}>
<Chip
label={selectedCluster.summary.content.message}
onDelete={deselectCluster(selectedCluster.clusterId)}
/>
</li>
);
})}
{selectedClusters.map((selectedCluster) => (
<li key={selectedCluster.clusterId}>
<Chip
label={selectedCluster.summary.content.message}
onDelete={deselectCluster(selectedCluster.clusterId)}
/>
</li>
))}
</Menu>
</div>
);
Expand Down

0 comments on commit c0a5d1b

Please sign in to comment.