Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
arminmeh committed Jul 1, 2024
1 parent 737562e commit d3ba991
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/data/data-grid/custom-columns/CustomColumnFullExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
INCOTERM_OPTIONS,
STATUS_OPTIONS,
} from '@mui/x-data-grid-generator/services/static-data';
import { SparkLineChart } from '@mui/x-charts';
import { SparkLineChart } from '@mui/x-charts/SparkLineChart';
import { DataGrid, gridStringOrNumberComparator } from '@mui/x-data-grid';

function GridSparklineCell(params) {
Expand Down Expand Up @@ -165,7 +165,7 @@ const rows = Array.from({ length: 10 }, (_, index) => ({
incoTerm: randomIncoterm(),
}));

export default function CustomColumnsFullExample() {
export default function CustomColumnFullExample() {
return (
<div style={{ height: 400, width: '100%' }}>
<DataGrid rows={rows} columns={columns} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
INCOTERM_OPTIONS,
STATUS_OPTIONS,
} from '@mui/x-data-grid-generator/services/static-data';
import { SparkLineChart } from '@mui/x-charts';
import { SparkLineChart } from '@mui/x-charts/SparkLineChart';
import {
DataGrid,
GridColDef,
Expand Down Expand Up @@ -171,7 +171,7 @@ const rows = Array.from({ length: 10 }, (_, index) => ({
incoTerm: randomIncoterm(),
}));

export default function CustomColumnsFullExample() {
export default function CustomColumnFullExample() {
return (
<div style={{ height: 400, width: '100%' }}>
<DataGrid rows={rows} columns={columns} />
Expand Down

0 comments on commit d3ba991

Please sign in to comment.