diff --git a/packages/app/src/components/message-input.tsx b/packages/app/src/components/message-input.tsx index 92e3092ba..d001f01e1 100644 --- a/packages/app/src/components/message-input.tsx +++ b/packages/app/src/components/message-input.tsx @@ -491,14 +491,19 @@ export const MessageInput = forwardRef( placeholderTextColor={theme.colors.mutedForeground} style={[ styles.textInput, - { - height: inputHeight, - minHeight: MIN_INPUT_HEIGHT, - maxHeight: MAX_INPUT_HEIGHT, - }, + IS_WEB + ? { + height: inputHeight, + minHeight: MIN_INPUT_HEIGHT, + maxHeight: MAX_INPUT_HEIGHT, + } + : { + minHeight: MIN_INPUT_HEIGHT, + maxHeight: MAX_INPUT_HEIGHT, + }, ]} multiline - scrollEnabled={inputHeight >= MAX_INPUT_HEIGHT} + scrollEnabled={IS_WEB ? inputHeight >= MAX_INPUT_HEIGHT : true} onContentSizeChange={handleContentSizeChange} editable={!isDictating && isConnected && !disabled} onKeyPress={