Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: mui-component-mapper folder name typo #1466

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/mui-component-mapper/src/checkbox/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { meta, input } from '@data-driven-forms/common/prop-types-templates';

import FormFieldGrid from '../form-field-grid/form-field-grid';
import { validationError } from '../validation-error/validation-error';
import MultipleChoiceList from '../multiple-chioce-list/multiple-choice-list';
import MultipleChoiceList from '../multiple-choice-list/multiple-choice-list';
import { useFieldApi } from '@data-driven-forms/react-form-renderer';

export const SingleCheckbox = (props) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-component-mapper/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ export { default as Textarea } from './textarea';
export { default as TimePicker } from './time-picker';
export { default as Wizard } from './wizard';
export { default as FormFieldGrid } from './form-field-grid';
export { default as MultipleChoiceList } from './multiple-chioce-list';
export { default as MultipleChoiceList } from './multiple-choice-list';
export { default as validationError } from './validation-error';
Loading