Skip to content

Commit

Permalink
Allow IN_CART status for payment processing (#1346)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnan-aot authored Apr 25, 2024
1 parent c23898b commit 3f054af
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ export class PaymentService {
private isApplicationInProgress(permitStatus: ApplicationStatus) {
return (
permitStatus === ApplicationStatus.IN_PROGRESS ||
permitStatus === ApplicationStatus.WAITING_PAYMENT
permitStatus === ApplicationStatus.WAITING_PAYMENT ||
permitStatus === ApplicationStatus.IN_CART
);
}

Expand Down

0 comments on commit 3f054af

Please sign in to comment.