From fb746f739473f1fccbf795e425551cd99cdb4e1e Mon Sep 17 00:00:00 2001 From: karla-vm Date: Fri, 3 Nov 2023 11:07:26 -0400 Subject: [PATCH] archived not required --- services/app-api/utils/types/reports.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/app-api/utils/types/reports.ts b/services/app-api/utils/types/reports.ts index 575ab8c25..e1f67dbc4 100644 --- a/services/app-api/utils/types/reports.ts +++ b/services/app-api/utils/types/reports.ts @@ -120,7 +120,6 @@ export interface ModalOverlayReportPageVerbiage extends ReportPageVerbiage { // REPORT METADATA export interface ReportMetadata { - archived: boolean; reportType: string; submittedBy?: string; createdAt: number; @@ -137,6 +136,7 @@ export interface ReportMetadata { previousRevisions: string[]; submissionCount: number; locked: boolean; + archived?: boolean; } export interface MLRReportMetadata extends ReportMetadata {