(fix:ui) mninor adjustments

This commit is contained in:
ManishMadan2882
2025-03-07 17:20:14 +05:30
parent 773147701d
commit b3f6a3aae6
4 changed files with 23 additions and 20 deletions

View File

@@ -143,9 +143,9 @@ const ConversationBubble = forwardRef<
onChange={(e) => {
setEditInputBox(e.target.value);
}}
onKeyDown={(e) => {
if(e.key === 'Enter' && !e.shiftKey){
e.preventDefault();
onKeyDown={(e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
handleEditClick();
}
}}