Skip to content

Commit

Permalink
Merge pull request #730 from ArwenQin/22146-Fix-COOP-Filing-Bug
Browse files Browse the repository at this point in the history
22146 - Fixed the CO-OP Incorporation Review Page Bug
  • Loading branch information
ArwenQin authored Sep 4, 2024
2 parents 0388fcd + 9699764 commit e398388
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-create-ui",
"version": "5.11.16",
"version": "5.11.17",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down
2 changes: 1 addition & 1 deletion src/store/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ export const useStore = defineStore('store', {

const isCertifyValid = this.getCertifyState.valid && !!this.getCertifyState.certifiedBy

const isCourtOrderValid = this.isRoleStaff ? this.getCourtOrderStep.valid : true
const isCourtOrderValid = (this.isBaseCompany && this.isRoleStaff) ? this.getCourtOrderStep.valid : true

const isStaffPaymentValid = this.isRoleStaff ? this.getStaffPaymentStep.valid : true

Expand Down

0 comments on commit e398388

Please sign in to comment.