SSR-1410 Remove redundant check
This commit is contained in:
parent
1fcd36b2a9
commit
be5ae6985f
1 changed files with 2 additions and 3 deletions
|
|
@ -162,9 +162,8 @@ export default {
|
|||
}
|
||||
];
|
||||
|
||||
const { vehicle, isPolicyLookupSuccessful, isITAC, isDeductible, isUnverified, serviceLocation } = store;
|
||||
if (!isUnverified
|
||||
&& (isITAC || isDeductible)
|
||||
const { vehicle, isPolicyLookupSuccessful, isITAC, isDeductible, serviceLocation } = store;
|
||||
if ((isITAC || isDeductible)
|
||||
&& isPolicyLookupSuccessful
|
||||
&& vehicle.policyVehicleId >= 0) {
|
||||
promiseResultMap.push({
|
||||
|
|
|
|||
Loading…
Reference in a new issue