From 46d02c6e083585280ae350cf6d01089168ac3c64 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sat, 26 Nov 2022 10:57:52 -0800 Subject: [PATCH] Remove LocalizedStringKey --- Meshtastic/Views/Bluetooth/Connect.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Bluetooth/Connect.swift b/Meshtastic/Views/Bluetooth/Connect.swift index 53f428cc..71293092 100644 --- a/Meshtastic/Views/Bluetooth/Connect.swift +++ b/Meshtastic/Views/Bluetooth/Connect.swift @@ -98,7 +98,7 @@ struct Connect: View { if node != nil { - Text(LocalizedStringKey("Num: \(String(node!.num))")) + Text("Num: \(String(node!.num))") Text("Short Name: \(node?.user?.shortName ?? "????")") Text("Long Name: \(node?.user?.longName ?? "Unknown")") Text("Max Channels: \(String(node?.myInfo?.maxChannels ?? 0))")