Merge pull request #530 from Safelite/feature/richardson/SSR-727.2
pass in 0 if deductible is null
This commit is contained in:
commit
067edabc7a
1 changed files with 1 additions and 1 deletions
|
|
@ -941,7 +941,7 @@ export const useMainStore = defineStore({
|
|||
}
|
||||
const ctuToUse = this.order.serviceLocation.zipCodeCtu;
|
||||
const availableLineItemsFormattedForRequest = getLineItemQueryStringForPricing(availableLineItems);
|
||||
const deductibleToUse = this.order.currentDeductible;
|
||||
const deductibleToUse = this.order.currentDeductible ?? 0;
|
||||
|
||||
let queryString =
|
||||
`ParentAccountNumber=${this.order.accountNumber}`
|
||||
|
|
|
|||
Loading…
Reference in a new issue