From 4121b18799faca58392928304a98cb24d095cdc7 Mon Sep 17 00:00:00 2001 From: eve-git Date: Tue, 24 Feb 2026 14:41:38 -0800 Subject: [PATCH 1/2] enable Transfer to Surviving Joint Tenant without new FF --- ppr-ui/package.json | 2 +- ppr-ui/src/resources/transferTypes.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ppr-ui/package.json b/ppr-ui/package.json index 8b60fdf0c..24c633fe2 100644 --- a/ppr-ui/package.json +++ b/ppr-ui/package.json @@ -1,6 +1,6 @@ { "name": "ppr-ui", - "version": "6.0.8", + "version": "6.0.9", "private": true, "appName": "Assets UI", "connectLayerName": "Core UI", diff --git a/ppr-ui/src/resources/transferTypes.ts b/ppr-ui/src/resources/transferTypes.ts index 2c8d9a784..966306771 100644 --- a/ppr-ui/src/resources/transferTypes.ts +++ b/ppr-ui/src/resources/transferTypes.ts @@ -416,9 +416,11 @@ export const ClientTransferTypes: Array = [ } ] +const toDTypesForLawyersAndQSNotary: Array = transferDueToDeathTypes.slice(0, 2); + export const QualifiedSupplierTransferTypes = (): Array => { return [ ...ClientTransferTypes, - ...(getFeatureFlag('mhr-transfer-enable-tod') ? transferDueToDeathTypes : []) + ...(getFeatureFlag('mhr-transfer-enable-tod') ? transferDueToDeathTypes : toDTypesForLawyersAndQSNotary) ] } From 9d92a508508ec385f6c067eebef857d1555a8a8d Mon Sep 17 00:00:00 2001 From: eve-git <54647458+eve-git@users.noreply.github.com> Date: Tue, 24 Feb 2026 15:02:11 -0800 Subject: [PATCH 2/2] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- ppr-ui/src/resources/transferTypes.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ppr-ui/src/resources/transferTypes.ts b/ppr-ui/src/resources/transferTypes.ts index 966306771..0aa45b61c 100644 --- a/ppr-ui/src/resources/transferTypes.ts +++ b/ppr-ui/src/resources/transferTypes.ts @@ -416,7 +416,13 @@ export const ClientTransferTypes: Array = [ } ] -const toDTypesForLawyersAndQSNotary: Array = transferDueToDeathTypes.slice(0, 2); +const toDTypesForLawyersAndQSNotary: Array = (() => { + const header = transferDueToDeathTypes[0] + const survivingJointTenant = transferDueToDeathTypes.find( + type => type.transferType === ApiTransferTypes.SURVIVING_JOINT_TENANT + ) + return survivingJointTenant ? [header, survivingJointTenant] : [header] +})() export const QualifiedSupplierTransferTypes = (): Array => { return [