From 37f142f1ebbd54d357429f366c5107ebea9ef1e7 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Thu, 29 Aug 2024 16:53:27 +1000 Subject: [PATCH] fix an UI issue for confirmation model --- SessionUIKit/Components/ConfirmationModal.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/SessionUIKit/Components/ConfirmationModal.swift b/SessionUIKit/Components/ConfirmationModal.swift index 30dbde668..1a5a4cb1a 100644 --- a/SessionUIKit/Components/ConfirmationModal.swift +++ b/SessionUIKit/Components/ConfirmationModal.swift @@ -253,6 +253,7 @@ public class ConfirmationModal: Modal, UITextFieldDelegate { case .input(let explanation, let placeholder, let value, let clearButton, let onTextChanged): explanationLabel.attributedText = explanation explanationLabelContainer.isHidden = (explanation == nil) + self.layoutExplanationLabel() textField.placeholder = placeholder textField.text = (value ?? "") textField.clearButtonMode = (clearButton ? .always : .never)