Skip to content

Commit

Permalink
fix missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanMarmelab committed Sep 16, 2024
1 parent a6f0c79 commit 9bc7c8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/DateInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Here is how to set up the pickers to use the `fr` locale:
import { Admin, Resource } from 'react-admin';
import { LocalizationProvider } from '@mui/x-date-pickers';
import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns';
import { fr } from 'date-fns/locale/fr'
import { fr } from 'date-fns/locale/fr';
import { EventEdit } from './events';

export const App = () => (
Expand Down
2 changes: 1 addition & 1 deletion docs/DateTimeInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Here is how to set up the pickers to use the `fr` locale:
import { Admin, Resource } from 'react-admin';
import { LocalizationProvider } from '@mui/x-date-pickers';
import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns';
import { fr } from 'date-fns/locale/fr'
import { fr } from 'date-fns/locale/fr';
import { EventEdit } from './events';

export const App = () => (
Expand Down

0 comments on commit 9bc7c8f

Please sign in to comment.