Fix type error

This commit is contained in:
2026-02-03 16:42:13 +01:00
parent 48c7d522c1
commit ff886d3002

View File

@ -37,7 +37,7 @@ type RequestShapeSerializable = Omit<
RequestShape,
"createdAt" | "updatedAt" | "files" | "status"
> & {
status: CommissionStatus;
status: CommissionStatus | string;
createdAt: string | Date;
updatedAt: string | Date;
files: Array<Omit<RequestShape["files"][number], "createdAt"> & { createdAt: string | Date }>;