Skip to content

Commit

Permalink
fix: TS
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Aug 28, 2024
1 parent 2cb9820 commit 3197bd3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ type ComposerWithSuggestionsProps = ComposerWithSuggestionsOnyxProps &
/** Callback to blur composer */
onBlur: (event: NativeSyntheticEvent<TextInputFocusEventData>) => void;

/** Callback to layout the composer */
onLayout: (event: LayoutChangeEvent) => void;
/** Callback when layout of composer changes */
onLayout?: (event: LayoutChangeEvent) => void;

/** Callback to update the value of the composer */
onValueChange: (value: string) => void;
Expand Down

0 comments on commit 3197bd3

Please sign in to comment.