diff --git a/src/mainview/components/MessageBarTextArea.qml b/src/mainview/components/MessageBarTextArea.qml
index 73ab909b1aa2bce204224c29a8578b382e21540f..f539840411c7183b4cfa2b41633eefb36ad32811 100644
--- a/src/mainview/components/MessageBarTextArea.qml
+++ b/src/mainview/components/MessageBarTextArea.qml
@@ -80,28 +80,6 @@ JamiFlickable {
         textFormat: TextEdit.PlainText
         placeholderTextColor: JamiTheme.placeholderTextColor
 
-        cursorDelegate: Rectangle {
-            visible: textArea.cursorVisible
-            color: JamiTheme.textColor
-            width: 1
-
-            SequentialAnimation on opacity {
-                loops: Animation.Infinite
-                running: textArea.cursorVisible
-
-                NumberAnimation {
-                    from: 1
-                    to: 0
-                    duration: JamiTheme.recordBlinkDuration
-                }
-                NumberAnimation {
-                    from: 0
-                    to: 1
-                    duration: JamiTheme.recordBlinkDuration
-                }
-            }
-        }
-
         background: Rectangle {
             border.width: 0
             color: JamiTheme.transparentColor