From 8c17c4f6481ca58f7dd4330310c7d7d67a40a5e7 Mon Sep 17 00:00:00 2001 From: Loren Burkholder Date: Fri, 30 Jun 2023 08:43:21 -0400 Subject: [PATCH] Remove duplicate UIA error display --- resources/qml/Root.qml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml index 1fd0c610..fb0c6036 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml @@ -347,11 +347,6 @@ Pane { return UIA.submit3pidToken(t); } } - Platform.MessageDialog { - id: uiaErrorDialog - - buttons: Platform.MessageDialog.Ok - } Platform.MessageDialog { id: uiaConfirmationLinkDialog @@ -368,10 +363,6 @@ Pane { function onEmail() { uiaEmailPrompt.show(); } - function onError(msg) { - uiaErrorDialog.text = msg; - uiaErrorDialog.open(); - } function onPassword() { console.log("UIA: password needed"); uiaPassPrompt.show();