From 8d423312e98ccc0fa2f8c16fe6fe84b72f6e1b2b Mon Sep 17 00:00:00 2001 From: Josh Dassinger Date: Fri, 20 Feb 2026 08:22:08 -0600 Subject: [PATCH] INSR-8547 Fixed isBigTruck sending undefined --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index b23ca103..d947829b 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1052,7 +1052,7 @@ export const useMainStore = defineStore({ safeliteOnly, carId, windshieldPartWithRecal?.partNumber, - isBigTruck + !!isBigTruck ) }); },