Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/product/TermsOfExchange.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export default function TermsOfExchange() {
<FormField
title="Seller deposit"
required
subTitle="The seller deposit is charged when a buyers commits to the offer and is used to hold the seller accountable to follow through with their commitment to deliver the physical item. If you break your commitment as a seller, then your deposit will be transferred to the buyer."
subTitle="The seller deposit is charged when a buyer commits to the offer and is used to hold the seller accountable to follow through with their commitment to deliver the physical item. If you break your commitment as a seller, then your deposit will be transferred to the buyer. A deposit value is required to be set below, but it is up to you as the seller to choose the value or set it to 0."
>
<FieldContainer>
<div>
Expand Down
3 changes: 2 additions & 1 deletion src/components/seller/products/SellerProductsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,8 @@ export default function SellerProductsTable({
padding: "0.25rem 1rem",
margin: "1px"
}}
disabled={!offer}
tooltip="This action is restricted to only the assistant wallet"
disabled={!offer || !sellerRoles?.isAssistant}
onClick={async (
event: Parameters<
NonNullable<Parameters<typeof Button>[0]["onClick"]>
Expand Down