Skip to content

Commit

Permalink
fix never type error
Browse files Browse the repository at this point in the history
  • Loading branch information
13bfrancis committed Nov 22, 2024
1 parent d7f5fce commit 563f3d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const transform = () => {
makoChangedDate: data.timestamp ? new Date(data.timestamp).toISOString() : null,
cmsStatus,
stateStatus,
raiReceivedDate: new Date(data.timestamp).toISOString(),
raiReceivedDate: data.timestamp ? new Date(data.timestamp).toISOString() : null,
seatoolStatus: SEATOOL_STATUS.PENDING_RAI,
locked: true,
};
Expand Down

0 comments on commit 563f3d1

Please sign in to comment.