Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
narin committed Dec 13, 2024
1 parent bd41f7c commit 270ab94
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,15 @@ export const CheckboxGroup: FC<CheckboxGroupProps> = ({
return (
<ComponentWrapper>
<View style={containerStyle} testID={testID}>
<Header text={header} required={required} />{' '}
<Header text={header} required={required} />
{header && <Spacer size="xs" />}

<Hint text={hint} />
{hint && <Spacer size="xs" />}

<Error text={error} />
{error && <Spacer size="xs" />}

{items.map((item, index) => {
const isObject = typeof item === 'object'
const value = isObject ? item.value || item.text : item
Expand Down

0 comments on commit 270ab94

Please sign in to comment.