We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be7492 commit 0a84c90Copy full SHA for 0a84c90
package/src/components/MessageInput/MessageInput.tsx
@@ -556,7 +556,7 @@ const MessageInputWithContext = (props: MessageInputPropsWithContext) => {
556
<CooldownTimer seconds={cooldownRemainingSeconds} />
557
) : (
558
<View style={[styles.sendButtonContainer, sendButtonContainer]}>
559
- <SendButton disabled={!hasSendableData} />
+ <SendButton disabled={!hasSendableData || (!!command && !isOnline)} />
560
</View>
561
)
562
) : null}
0 commit comments