Skip to content

Commit c7b2576

Browse files
committed
fix: lint issues and testst
1 parent 9de32b8 commit c7b2576

File tree

2 files changed

+405
-388
lines changed

2 files changed

+405
-388
lines changed

package/src/components/MessageInput/MessageInput.tsx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,12 @@ const MessageInputWithContext = (props: MessageInputPropsWithContext) => {
376376
}}
377377
style={
378378
messageInputFloating
379-
? [styles.wrapper, styles.floatingWrapper, { bottom: BOTTOM_OFFSET }, floatingWrapper]
379+
? [
380+
styles.wrapper,
381+
styles.floatingWrapper,
382+
{ bottom: BOTTOM_OFFSET },
383+
floatingWrapper,
384+
]
380385
: [
381386
styles.wrapper,
382387
{
@@ -393,9 +398,9 @@ const MessageInputWithContext = (props: MessageInputPropsWithContext) => {
393398
]
394399
}
395400
>
396-
{Input ? (
397-
<Input additionalTextInputProps={additionalTextInputProps} getUsers={getUsers} />
398-
) : (
401+
{Input ? (
402+
<Input additionalTextInputProps={additionalTextInputProps} getUsers={getUsers} />
403+
) : (
399404
<View style={[styles.container, container]}>
400405
<MessageComposerLeadingView />
401406
<Animated.View

0 commit comments

Comments
 (0)