From f57864dbb598ab17defecb36db10a03f57eeba49 Mon Sep 17 00:00:00 2001 From: Jake-B Date: Fri, 4 Apr 2025 14:11:25 -0400 Subject: [PATCH] SecureInput fix: multiple buttons in form triggered by one tap --- Meshtastic/Views/Helpers/SecureInput.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Helpers/SecureInput.swift b/Meshtastic/Views/Helpers/SecureInput.swift index 6bcab1d0..aaed8bd1 100644 --- a/Meshtastic/Views/Helpers/SecureInput.swift +++ b/Meshtastic/Views/Helpers/SecureInput.swift @@ -55,7 +55,7 @@ struct SecureInput: View { }) { Image(systemName: self.isSecure ? "eye.slash" : "eye") .accentColor(.secondary) - } + }.buttonStyle(BorderlessButtonStyle()) } } }