Skip to content

Commit

Permalink
Fix case mismatch - CheckBox -> Checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnaab committed May 1, 2024
1 parent f1ea391 commit 54469aa
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/design/src/Form/components/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { type ComponentForPattern } from '..';

import Address from './Address';
import CheckboxPattern from './Checkbox';
import Checkbox from './Checkbox';
import Fieldset from './Fieldset';
import FormSummary from './FormSummary';
import Paragraph from './Paragraph';
Expand All @@ -12,7 +12,7 @@ import TextInput from './TextInput';

export const defaultPatternComponents: ComponentForPattern = {
address: Address,
checkbox: CheckboxPattern,
checkbox: Checkbox,
fieldset: Fieldset,
'form-summary': FormSummary,
input: TextInput,
Expand Down

0 comments on commit 54469aa

Please sign in to comment.