when enter wrong password KDE lockscreen (sddm) makes me wait tooooo long (3000ms) to retry

THE SOLUTION is to change timeout value in QML files

--- -   2026-02-02 22:46:13.546455058 +0200
+++ /usr/share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/LockScreenUi.qml    2026-02-02 20:40:30.430509682 +0200
@@ -173,9 +173,10 @@
             onTriggered: root.notification = ""
         }
         Timer {
             id: graceLockTimer
-            interval: 3000
+            interval: 333
+            //interval: 3000
             onTriggered: {
                 root.clearPassword();
                 authenticator.startAuthenticating();
             }
--- -   2026-02-02 22:46:13.578809260 +0200
+++ /usr/share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/MainBlock.qml   2026-02-02 20:43:58.164684788 +0200
@@ -150,9 +150,9 @@
             }
         }
         Timer {
             id: _timer
-            interval: Kirigami.Units.humanMoment
+            interval: 333 //Kirigami.Units.humanMoment
             onTriggered: {
                 _failableLabel.text = Qt.binding(() => _failableLabel.label)
             }
         }

TODO make it configurable via KDE settings. maybe file lockscreen/config.xml can be used as bridge between KDE Settings UI and LockScreenUI?