Revert "Added additional client name value (full client name)." - needs to be in actual branch.

This reverts commit df75a7c707.
This commit is contained in:
Jeremy-Z 2026-01-14 14:26:20 -05:00
parent df75a7c707
commit 350dc1a847
2 changed files with 1 additions and 6 deletions

View file

@ -42,7 +42,7 @@ describe('entry-page.vue', () => {
const queryString = 'policynumber="123456"';
const { wrapper } = setupMocks(queryString);
window.console.log(wrapper.vm.$route);
window.console.log(wrapper.vm.$route.query);
expect(wrapper).toBeTruthy();
});
});

View file

@ -143,7 +143,6 @@ export default {
},
populateISSConfigValues(data) {
this.mainStore.issConfig.clientName = data.accountName;
this.mainStore.issConfig.clientFullName = data.accountName; // Defaults to use the client name.
this.mainStore.issConfig.clientDisplayName = data.accountName; // Defaults to use the client name.
this.mainStore.issConfig.parentAccountNumber = data.parentAccountNumber;
this.mainStore.issConfig.styleSheet = data.styleSheet;
@ -158,10 +157,6 @@ export default {
this.mainStore.issConfig.enableTPAFlow = true;
}
if (clientFlags.ClientFullName != null) {
this.mainStore.issConfig.clientFullName = clientFlags.ClientFullName;
}
if (clientFlags.ClientDisplayName != null) {
this.mainStore.issConfig.clientDisplayName = clientFlags.ClientDisplayName;
}