Skip to content

Commit 2d857a1

Browse files
committed
Fix type
1 parent f6ede33 commit 2d857a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libs/NextStepUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type BuildNextStepNewParams = {
3838
* Bypass Next Approver ID is used when an approver is bypassed so that we can show the next approver in the chain.
3939
* This is necessary in the case where report actions are not yet updated to determine the bypass action.
4040
*/
41-
bypassNextApproverID: number | null;
41+
bypassNextApproverID?: number;
4242
};
4343

4444
function buildNextStepMessage(nextStep: ReportNextStep, translate: LocaleContextProps['translate'], currentUserAccountID: number): string {

0 commit comments

Comments
 (0)