diff --git a/package-lock.json b/package-lock.json index 9bded353..08b2031e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "business-create-ui", - "version": "5.11.16", + "version": "5.11.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "business-create-ui", - "version": "5.11.16", + "version": "5.11.17", "dependencies": { "@babel/compat-data": "^7.21.5", "@bcrs-shared-components/approval-type": "1.0.19", diff --git a/package.json b/package.json index bb76f57f..61f1c482 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/store/store.ts b/src/store/store.ts index 0fc9313e..afa2ea8c 100644 --- a/src/store/store.ts +++ b/src/store/store.ts @@ -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