From a6525c986b7a50fad57280006c6dd4c79a041aa9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jan 2024 20:18:02 -0500 Subject: [PATCH] --- Sources/FireSide/ContentView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/FireSide/ContentView.swift b/Sources/FireSide/ContentView.swift index 11f44d9..d43b500 100644 --- a/Sources/FireSide/ContentView.swift +++ b/Sources/FireSide/ContentView.swift @@ -89,8 +89,10 @@ struct JoinChatView : View { TextField(text: $chatKey) { Text("Chat Key", bundle: .module) } + #if !os(macOS) .keyboardType(.decimalPad) .textFieldStyle(.roundedBorder) + #endif .padding() } }