Skip to content

Commit

Permalink
[core] Fix CodeQL scan (#43547)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Sep 1, 2024
1 parent ffddc91 commit c6caf2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { TextField as JoyTextField } from "@mui/joy";
import JoyTextField2 from "@mui/joy/TextField";
// the codemod should transform only Joy TextField
import TextField from "@mui/material/TextField"
import TextField from "@mui/material/TextField";

<div>
<JoyTextField
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Input as JoyInput } from "@mui/joy";
import JoyInput2 from "@mui/joy/Input";
// the codemod should transform only Joy TextField
import TextField from "@mui/material/TextField"
import TextField from "@mui/material/TextField";

<div>
<FormControl
Expand Down

0 comments on commit c6caf2f

Please sign in to comment.