Merge pull request #106 from omnivore-app/chore/macos-app-review-bugs

Mac App Minor fixes
This commit is contained in:
Satindar Dhillon
2022-02-21 15:50:19 -08:00
committed by GitHub
6 changed files with 6 additions and 12 deletions

View File

@ -16,8 +16,6 @@
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)app.omnivoreapp.shared</string>

View File

@ -12,8 +12,6 @@
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)app.omnivoreapp.shared</string>

View File

@ -12,8 +12,6 @@
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)app.omnivoreapp.shared</string>

View File

@ -164,12 +164,12 @@ public struct ShareExtensionView: View {
savedStateView
} else {
HStack(spacing: 4) {
Text("Link saved to your inbox.")
Text("Link saved and will be available in your inbox shortly.")
.font(.appTitleThree)
.foregroundColor(.appGrayText)
.padding(.trailing, 16)
.multilineTextAlignment(.center)
.frame(maxWidth: .infinity)
.fixedSize(horizontal: false, vertical: true)
.lineLimit(nil)
}
.padding()

View File

@ -42,9 +42,9 @@ struct MainApp: App {
WindowGroup {
RootView(pdfViewerProvider: nil, intercomProvider: nil)
}
Settings {
SettingsView()
}
// Settings {
// SettingsView()
// }
#endif
}

File diff suppressed because one or more lines are too long