Skip to content

Commit

Permalink
fix(checkbox): 💚 fix build ts definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Karthik-B-06 committed Mar 27, 2024
1 parent ccf8d42 commit f430579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ const RNCheckbox: React.FC<Partial<CheckboxProps>> = forwardRef<
// Web Callbacks
onHoverIn={onHoverIn}
onHoverOut={onHoverOut}
{...focusProps}
// Web Callbacks
// A11y Props
accessibilityLabel={accessibilityLabel}
Expand Down Expand Up @@ -441,6 +440,7 @@ const RNCheckbox: React.FC<Partial<CheckboxProps>> = forwardRef<
})}
disabled={isDisabled}
{...(description ? {} : handlers)}
{...focusProps}
>
{(touchState: PressableStateCallbackType) =>
children({
Expand Down

0 comments on commit f430579

Please sign in to comment.