Skip to content

Commit

Permalink
fix: bc shopping list‘
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianJiang2021 authored and kris-liu-smile committed Mar 10, 2023
1 parent a6b586f commit db32fe4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/storefront/src/pages/quote/QuoteDraft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,7 @@ const QuoteDraft = ({
total={total}
currencyToken={currencyToken}
getQuoteTableDetails={getQuoteTableDetails}
isB2BUser={isB2BUser}
/>

</Container>
Expand Down
3 changes: 3 additions & 0 deletions apps/storefront/src/pages/quote/components/QuoteTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ interface ShoppingDetailTableProps {
currencyToken?: string,
getQuoteTableDetails: any,
idEdit?: boolean,
isB2BUser: boolean,
}

interface SearchProps {
Expand Down Expand Up @@ -138,6 +139,7 @@ const QuoteTable = (props: ShoppingDetailTableProps, ref: Ref<unknown>) => {
currencyToken,
getQuoteTableDetails,
idEdit = true,
isB2BUser,
} = props

const paginationTableRef = useRef<PaginationTableRefProps | null>(null)
Expand Down Expand Up @@ -490,6 +492,7 @@ const QuoteTable = (props: ShoppingDetailTableProps, ref: Ref<unknown>) => {
onConfirm={handleChooseOptionsDialogConfirm}
currency={currencyToken}
isEdit
isB2BUser={isB2BUser}
/>

</StyledQuoteTableContainer>
Expand Down

0 comments on commit db32fe4

Please sign in to comment.