diff --git a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift index 42cc66a7e..d0a5bd71b 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift @@ -181,19 +181,21 @@ noteSection } .sheet(isPresented: $showAnnotationModal) { - HighlightAnnotationSheet( - annotation: $annotation, - onSave: { - onSaveAnnotation(annotation) - showAnnotationModal = false - hasHighlightMutations = true - }, - onCancel: { - showAnnotationModal = false - }, - errorAlertMessage: $errorAlertMessage, - showErrorAlertMessage: $showErrorAlertMessage - ) + NavigationView { + HighlightAnnotationSheet( + annotation: $annotation, + onSave: { + onSaveAnnotation(annotation) + showAnnotationModal = false + hasHighlightMutations = true + }, + onCancel: { + showAnnotationModal = false + }, + errorAlertMessage: $errorAlertMessage, + showErrorAlertMessage: $showErrorAlertMessage + ) + } } .formSheet(isPresented: $showShareView) { ShareSheet(activityItems: [viewModel.highlightAsMarkdown(item: self.highlightParams)])