Skip to content

Commit

Permalink
fix(BUN-2401): consuming correct value (#1042)
Browse files Browse the repository at this point in the history
* fix(BUN-2401): consuming correct value

* fix(BUN-2401): removing log
  • Loading branch information
bc-victor authored May 2, 2024
1 parent 3ffa71d commit 611b886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/storefront/src/pages/quote/QuoteDraft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 611b886

Please sign in to comment.