We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d27f2b4 commit 208f5b7Copy full SHA for 208f5b7
src/react/ChatProvider.tsx
@@ -49,7 +49,7 @@ export default () => {
49
opacity={(isChatActive ? chatOpacityOpened : chatOpacity) / 100}
50
messages={messages}
51
opened={isChatActive}
52
- placeholder={forwardChat && viewerConnection ? undefined : 'Chat forwarding is not enabled in the plugin settings'}
+ placeholder={forwardChat || !viewerConnection ? undefined : 'Chat forwarding is not enabled in the plugin settings'}
53
sendMessage={(message) => {
54
const builtinHandled = tryHandleBuiltinCommand(message)
55
if (miscUiState.loadedServerIndex && (message.startsWith('/login') || message.startsWith('/register'))) {
0 commit comments