Skip to content

Commit

Permalink
Remove prettification
Browse files Browse the repository at this point in the history
  • Loading branch information
MBilalShafi committed Mar 27, 2024
1 parent 433071f commit b7592eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions packages/x-codemod/src/v7.0.0/preset-safe/actual.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import { DataGrid, GridColDef } from '@mui/x-data-grid';

const theme = createTheme({});

const columns = [
{ field: 'id', headerName: 'ID', width: 90 } satisfies GridColDef,
];

// prettier-ignore
function App() {
const columns = [
{ field: 'id', headerName: 'ID', width: 90 } satisfies GridColDef,
];
return (
<ThemeProvider theme={theme}>
<DataGrid
Expand Down
8 changes: 4 additions & 4 deletions packages/x-codemod/src/v7.0.0/preset-safe/expected.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import { DataGrid, GridColDef } from '@mui/x-data-grid';

const theme = createTheme({});

const columns = [
{ field: 'id', headerName: 'ID', width: 90 } satisfies GridColDef,
];

// prettier-ignore
function App() {
const columns = [
{ field: 'id', headerName: 'ID', width: 90 } satisfies GridColDef,
];
return (
(<ThemeProvider theme={theme}>
<DataGrid
Expand Down

0 comments on commit b7592eb

Please sign in to comment.