Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
siriwatknp committed Jun 4, 2024
1 parent ec44ea2 commit c7aee5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-codemod/src/v6.0.0/sx-prop/sx-v6.js
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ export default function sxV6(file, api, options) {
}
lines.push(line);
}
if (line.includes('sx=') && !line.match(/sx=\{\{[^\}]+\}\}/)) {
if (line.includes('sx=') && !line.match(/sx=\{\{[^}]+\}\}/)) {
isInStyled = true;
spaceMatch = line.match(/^\s+/);
}
Expand Down

0 comments on commit c7aee5d

Please sign in to comment.