From 0d790267430946a1cba1d6e9d0faeb9c7045f5ed Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sun, 13 Oct 2024 20:45:02 +0200 Subject: [PATCH] Integrated the SettingsView view into the Settings screen inside the body of the PiperApp app in the app target. --- Piper/Sources/App/PiperApp.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Piper/Sources/App/PiperApp.swift b/Piper/Sources/App/PiperApp.swift index b8975a9..50d81e5 100644 --- a/Piper/Sources/App/PiperApp.swift +++ b/Piper/Sources/App/PiperApp.swift @@ -35,6 +35,10 @@ struct PiperApp: App { Image(systemName: "circle.fill") } .menuBarExtraStyle(.window) + + Settings { + SettingsView() + } } }