Fixing bug with policyLookupSuccessful being set
This commit is contained in:
parent
a1b21c9e19
commit
ef410f4fcb
1 changed files with 1 additions and 1 deletions
|
|
@ -363,7 +363,7 @@ export const useMainStore = defineStore({
|
||||||
correlationId: placeHolderCorrelationId
|
correlationId: placeHolderCorrelationId
|
||||||
}
|
}
|
||||||
}).then((r) => {
|
}).then((r) => {
|
||||||
const responsePolicy = response.policies?.[0];
|
const responsePolicy = r.data.policies?.[0];
|
||||||
policy.policyLookupSuccessful = !!responsePolicy;
|
policy.policyLookupSuccessful = !!responsePolicy;
|
||||||
return r;
|
return r;
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue