@@ -330,13 +329,13 @@ export default function TradeDetail({
)}
{/* Price Difference */}
- {!loading && (senderPrice > 0 || receiverPrice > 0) && (
+ {!loading && (yourPrice > 0 || theirPrice > 0) && (
@@ -422,9 +421,10 @@ export default function TradeDetail({
Waiting for {otherUser?.username} to respond...
) : (
- /* No editor yet (version 1) - original flow */
+ /* No editor yet (initial trade) */
<>
- {isSender ? (
+ {isUser1 ? (
+ /* User1 (initiator) can edit their initial offer */