From 611b886acc9e7da8627fd075142a8567bf26c4d1 Mon Sep 17 00:00:00 2001 From: Victor Campos <140021227+bc-victor@users.noreply.github.com> Date: Thu, 2 May 2024 09:49:05 -0600 Subject: [PATCH] fix(BUN-2401): consuming correct value (#1042) * fix(BUN-2401): consuming correct value * fix(BUN-2401): removing log --- apps/storefront/src/pages/quote/QuoteDraft.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/storefront/src/pages/quote/QuoteDraft.tsx b/apps/storefront/src/pages/quote/QuoteDraft.tsx index 02b43d53..3bcccef7 100644 --- a/apps/storefront/src/pages/quote/QuoteDraft.tsx +++ b/apps/storefront/src/pages/quote/QuoteDraft.tsx @@ -148,7 +148,7 @@ function QuoteDraft({ setOpenPage }: QuoteDraftProps) { const role = useAppSelector(({ company }) => company.customer.role) const dispatch = useAppDispatch() const enteredInclusiveTax = useAppSelector( - ({ global }) => global.enteredInclusive + ({ storeConfigs }) => storeConfigs.currencies.enteredInclusiveTax ) const draftQuoteList = useAppSelector( ({ quoteInfo }) => quoteInfo.draftQuoteList