diff --git a/apps/web/src/app/aircraft/[id]/pages/[pageId]/review/ReviewClient.tsx b/apps/web/src/app/aircraft/[id]/pages/[pageId]/review/ReviewClient.tsx index 5e68ecb..8ec4b63 100644 --- a/apps/web/src/app/aircraft/[id]/pages/[pageId]/review/ReviewClient.tsx +++ b/apps/web/src/app/aircraft/[id]/pages/[pageId]/review/ReviewClient.tsx @@ -512,6 +512,7 @@ export function ReviewClient({ reviewStatus, extractionStatus, detectedPageCount, + unreadRotatedContent, entries: initialEntries, returnLogbookId, canEdit, @@ -525,6 +526,7 @@ export function ReviewClient({ reviewStatus: ReviewStatus; extractionStatus: ExtractionStatus; detectedPageCount: number | null; + unreadRotatedContent: boolean; entries: ReviewEntry[]; returnLogbookId: string | null; canEdit: boolean; @@ -651,6 +653,20 @@ export function ReviewClient({

)} + {/* A missed entry has nothing to review against — no low-confidence field + to catch the eye — so the only recoverable outcome is saying so. */} + {unreadRotatedContent && ( +

+ There is sideways or rotated content on this page (often a sticker + affixed at 90°) that couldn't be read in full. Compare against the + paper — if an entry is missing, add it with{" "} + Add an entry the extractor missed below. +

+ )} +