Skip to content

Commit

Permalink
Fix splice in NonBCSC, also fix Govm abit
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 committed Jan 15, 2025
1 parent 19c80e5 commit bfd634c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions auth-web/src/components/auth/create-account/AccountCreate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
>
<fieldset class="org-business-type">
<AccountBusinessType
:govmAccount="govmAccount"
:saving="saving"
:premiumLinkedAccount="true"
:bcolDuplicateNameErrorMessage="bcolDuplicateNameErrorMessage"
Expand Down Expand Up @@ -119,6 +120,10 @@ export default defineComponent({
readOnly: {
type: Boolean,
default: false
},
govmAccount: {
type: Boolean,
default: false
}
},
setup (props, { root }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default defineComponent({
// if user affidavit is already approve no need to show upload affidavit stepper
// so removing it from array
if (state.isAffidavitAlreadyApproved) {
accountStepperConfig.splice(2, 1)
accountStepperConfig.splice(0, 1)
}
})
Expand Down

0 comments on commit bfd634c

Please sign in to comment.