UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

10 lines (8 loc) 297 B
import { RecentlyViewedReport, RequestStatus } from '../../../types/UserReports' export default { filterReports: (report: RecentlyViewedReport) => { return ( report.status === RequestStatus.READY || (report.executionId?.length && report.status === RequestStatus.EXPIRED) ) }, }