diff --git a/src/react/ChatProvider.tsx b/src/react/ChatProvider.tsx index ded46b45..90bc9c6d 100644 --- a/src/react/ChatProvider.tsx +++ b/src/react/ChatProvider.tsx @@ -49,7 +49,7 @@ export default () => { opacity={(isChatActive ? chatOpacityOpened : chatOpacity) / 100} messages={messages} opened={isChatActive} - 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'} sendMessage={(message) => { const builtinHandled = tryHandleBuiltinCommand(message) if (miscUiState.loadedServerIndex && (message.startsWith('/login') || message.startsWith('/register'))) {