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';
|
import { useMainStore } from '@/store';
|
||||||
|
// USAA coverage overrides
|
||||||
export function updateClaimRegistrationPayload(payload) {
|
export function updateClaimRegistrationPayload(payload) {
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
payload.additionalInfo = {
|
payload.additionalInfo = {
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@ import { useMainStore } from '@/store';
|
||||||
|
|
||||||
export async function updateClientSpecificFieldsForClaimRegistration(payload) {
|
export async function updateClientSpecificFieldsForClaimRegistration(payload) {
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
const parentAccountNumber = mainStore?.order?.parentAccountNumber;
|
const parentAccountNumber = mainStore?.order?.parentAccountNumber;
|
||||||
if (!parentAccountNumber) { return; }
|
if (!parentAccountNumber) { return; }
|
||||||
|
|
||||||
let clientMapper;
|
let clientMapper;
|
||||||
try {
|
try {
|
||||||
|
|
@ -16,5 +16,4 @@ export async function updateClientSpecificFieldsForClaimRegistration(payload) {
|
||||||
if (typeof clientMapper.updateClaimRegistrationPayload === 'function') {
|
if (typeof clientMapper.updateClaimRegistrationPayload === 'function') {
|
||||||
await clientMapper.updateClaimRegistrationPayload(payload);
|
await clientMapper.updateClaimRegistrationPayload(payload);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue