diff --git a/ppr-ui/package-lock.json b/ppr-ui/package-lock.json index bbcae6ba1..03b7e77ca 100644 --- a/ppr-ui/package-lock.json +++ b/ppr-ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "ppr-ui", - "version": "3.2.48", + "version": "3.2.49", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ppr-ui", - "version": "3.2.48", + "version": "3.2.49", "dependencies": { "@bcrs-shared-components/input-field-date-picker": "^1.0.0", "@lemoncode/fonk": "^1.5.1", diff --git a/ppr-ui/package.json b/ppr-ui/package.json index baa8e2d92..8ba522a05 100644 --- a/ppr-ui/package.json +++ b/ppr-ui/package.json @@ -1,6 +1,6 @@ { "name": "ppr-ui", - "version": "3.2.48", + "version": "3.2.49", "private": true, "appName": "Assets UI", "sbcName": "SBC Common Components", diff --git a/ppr-ui/src/composables/mhrInformation/useMhrInformation.ts b/ppr-ui/src/composables/mhrInformation/useMhrInformation.ts index a80bab271..f885f56b5 100644 --- a/ppr-ui/src/composables/mhrInformation/useMhrInformation.ts +++ b/ppr-ui/src/composables/mhrInformation/useMhrInformation.ts @@ -480,11 +480,13 @@ export const useMhrInformation = () => { }), // Determine group tenancy type type: (ownerGroup.owners.filter(owner => owner.action === ActionTypes.REMOVED).length > 1 || - getMhrTransferType.value?.transferType === ApiTransferTypes.SURVIVING_JOINT_TENANT) - ? ApiHomeTenancyTypes.JOINT - : getMhrTransferHomeOwnerGroups.value.length > 1 - ? ApiHomeTenancyTypes.NA - : ApiHomeTenancyTypes.SOLE + getMhrTransferType.value?.transferType === ApiTransferTypes.SURVIVING_JOINT_TENANT) + ? getMhrTransferType.value?.transferType === ApiTransferTypes.TO_EXECUTOR_PROBATE_WILL + ? ApiHomeTenancyTypes.NA + : ApiHomeTenancyTypes.JOINT + : getMhrTransferHomeOwnerGroups.value.length > 1 + ? ApiHomeTenancyTypes.NA + : ApiHomeTenancyTypes.SOLE }) } }) diff --git a/ppr-ui/src/views/newMhrRegistration/HomeOwners.vue b/ppr-ui/src/views/newMhrRegistration/HomeOwners.vue index 0bc7ba2ba..bddb931d6 100644 --- a/ppr-ui/src/views/newMhrRegistration/HomeOwners.vue +++ b/ppr-ui/src/views/newMhrRegistration/HomeOwners.vue @@ -440,7 +440,7 @@ import { } from '@/composables' import { MhrRegistrationHomeOwnerGroupIF } from '@/interfaces' -import { ActionTypes, RouteNames, UITransferTypes } from '@/enums' +import { ActionTypes, RouteNames } from '@/enums' import { transfersErrors } from '@/resources' import { formatCurrency } from '@/utils'