diff --git a/apple/Sources/MainApp.swift b/apple/Sources/MainApp.swift index 78536872c..9bf3d593c 100644 --- a/apple/Sources/MainApp.swift +++ b/apple/Sources/MainApp.swift @@ -42,9 +42,6 @@ struct MainApp: App { WindowGroup { RootView(pdfViewerProvider: nil, intercomProvider: nil) } -// Settings { -// SettingsView() -// } #endif } @@ -52,18 +49,3 @@ struct MainApp: App { AnyView(PDFViewer(pdfURL: url, viewModel: viewModel)) } } - -struct SettingsView: View { - var appVersion: String { - Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" - } - - var body: some View { - VStack { - Text("Omnivore") - .font(.largeTitle) - Text("Omnivore Version: \(appVersion)") - } - .frame(width: 600, height: 600) - } -}