diff --git a/apps/storefront/src/pages/quote/QuoteDraft.tsx b/apps/storefront/src/pages/quote/QuoteDraft.tsx index 2875d769..e3d115f5 100644 --- a/apps/storefront/src/pages/quote/QuoteDraft.tsx +++ b/apps/storefront/src/pages/quote/QuoteDraft.tsx @@ -760,6 +760,7 @@ const QuoteDraft = ({ total={total} currencyToken={currencyToken} getQuoteTableDetails={getQuoteTableDetails} + isB2BUser={isB2BUser} /> diff --git a/apps/storefront/src/pages/quote/components/QuoteTable.tsx b/apps/storefront/src/pages/quote/components/QuoteTable.tsx index 0cfa0ca0..253b99a4 100644 --- a/apps/storefront/src/pages/quote/components/QuoteTable.tsx +++ b/apps/storefront/src/pages/quote/components/QuoteTable.tsx @@ -80,6 +80,7 @@ interface ShoppingDetailTableProps { currencyToken?: string, getQuoteTableDetails: any, idEdit?: boolean, + isB2BUser: boolean, } interface SearchProps { @@ -138,6 +139,7 @@ const QuoteTable = (props: ShoppingDetailTableProps, ref: Ref) => { currencyToken, getQuoteTableDetails, idEdit = true, + isB2BUser, } = props const paginationTableRef = useRef(null) @@ -490,6 +492,7 @@ const QuoteTable = (props: ShoppingDetailTableProps, ref: Ref) => { onConfirm={handleChooseOptionsDialogConfirm} currency={currencyToken} isEdit + isB2BUser={isB2BUser} />