Skip to content

Commit

Permalink
Fix testid prop case in StatusCell
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundito committed Jan 18, 2023
1 parent e6c3723 commit 11a25db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const StatusCell: React.FC<StatusCellProps> = ({
const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema);

return (
<div className={styles.container} data-testId={`statusCell-${id}`}>
<div className={styles.container} data-testid={`statusCell-${id}`}>
<StatusCellControl
enabled={enabled}
id={id}
Expand Down

0 comments on commit 11a25db

Please sign in to comment.