diff --git a/Meshtastic/Views/Settings/Config/SecurityConfig.swift b/Meshtastic/Views/Settings/Config/SecurityConfig.swift index 6e4c1168..94f3da04 100644 --- a/Meshtastic/Views/Settings/Config/SecurityConfig.swift +++ b/Meshtastic/Views/Settings/Config/SecurityConfig.swift @@ -120,6 +120,12 @@ struct SecurityConfig: View { .onChange(of: adminChannelEnabled) { if $0 != node?.securityConfig?.adminChannelEnabled { hasChanges = true } } + .onChange(of: publicKey) { _ in + hasChanges = true + } + .onChange(of: privateKey) { _ in + hasChanges = true + } .onChange(of: adminKey) { _ in hasChanges = true }