diff --git a/apple/OmnivoreKit/Sources/Services/DataService/Queries/ArticleContentQuery.swift b/apple/OmnivoreKit/Sources/Services/DataService/Queries/ArticleContentQuery.swift index e1851149b..61267d8a0 100644 --- a/apple/OmnivoreKit/Sources/Services/DataService/Queries/ArticleContentQuery.swift +++ b/apple/OmnivoreKit/Sources/Services/DataService/Queries/ArticleContentQuery.swift @@ -251,7 +251,7 @@ public extension DataService { } } - if item.isPDF && needsPDFDownload { + if item.isPDF, needsPDFDownload { try await fetchPDFData(slug: item.slug, pageURLString: item.pageURLString) } diff --git a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift index d7735eaea..0758baf4f 100644 --- a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift +++ b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift @@ -147,11 +147,12 @@ public struct WebPreferencesPopoverView: View { ToolbarItem(placement: .navigationBarTrailing) { Button( action: dismissAction, - label: { Text("Done").foregroundColor(.appGrayTextContrast) } + label: { Text("Done").foregroundColor(.appGrayTextContrast).padding() } ) } } } + .navigationViewStyle(.stack) .accentColor(.appGrayTextContrast) } }