Skip to content

Commit

Permalink
fix: remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikmv committed Mar 1, 2024
1 parent 54fb586 commit e177513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core_modules/capture-ui/FlatList/FlatList.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const FlatListPlain = ({ list, classes, dataTest }: Props) => {
className={cx(classes.itemRow, { isLastItem: item.reactKey === lastItemKey })}
>
<div className={classes.itemKey}>{item.key}</div>
<div className={classes.itemValue}>{item.value}</div> {/* Added className */}
<div className={classes.itemValue}>{item.value}</div>
</div>
);

Expand Down

0 comments on commit e177513

Please sign in to comment.