INSR-10442: Fix spacing issue, add clarifying comment
This commit is contained in:
parent
471247696d
commit
ac8b485760
2 changed files with 3 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { useMainStore } from '@/store';
|
||||
|
||||
// USAA coverage overrides
|
||||
export function updateClaimRegistrationPayload(payload) {
|
||||
const mainStore = useMainStore();
|
||||
payload.additionalInfo = {
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@ import { useMainStore } from '@/store';
|
|||
|
||||
export async function updateClientSpecificFieldsForClaimRegistration(payload) {
|
||||
const mainStore = useMainStore();
|
||||
const parentAccountNumber = mainStore?.order?.parentAccountNumber;
|
||||
if (!parentAccountNumber) { return; }
|
||||
const parentAccountNumber = mainStore?.order?.parentAccountNumber;
|
||||
if (!parentAccountNumber) { return; }
|
||||
|
||||
let clientMapper;
|
||||
try {
|
||||
|
|
@ -16,5 +16,4 @@ export async function updateClientSpecificFieldsForClaimRegistration(payload) {
|
|||
if (typeof clientMapper.updateClaimRegistrationPayload === 'function') {
|
||||
await clientMapper.updateClaimRegistrationPayload(payload);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue