From d5ad23d1dae521e4a99f757505adec3f23a7914c Mon Sep 17 00:00:00 2001 From: devthejo Date: Sat, 9 Aug 2025 10:52:03 +0200 Subject: [PATCH] fix: placeholder in dark theme for chat input --- src/containers/ChatInput/TextArea.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/ChatInput/TextArea.js b/src/containers/ChatInput/TextArea.js index c211b84..8f61921 100644 --- a/src/containers/ChatInput/TextArea.js +++ b/src/containers/ChatInput/TextArea.js @@ -57,7 +57,7 @@ export default React.memo(function TextArea({ autoFocus={autoFocus} showSoftInputOnFocus={keyboardEnabled} // controlled by state placeholder="Message" - placeholderTextColor={colors.onBackgroundDisabled} + placeholderTextColor={colors.placeholder} onTouchStart={() => { if (!keyboardEnabled) { setKeyboardEnabled(true);