diff --git a/frontend/src/components/TradeBox/index.tsx b/frontend/src/components/TradeBox/index.tsx index 98610a28..e25ab5c6 100644 --- a/frontend/src/components/TradeBox/index.tsx +++ b/frontend/src/components/TradeBox/index.tsx @@ -602,13 +602,13 @@ const TradeBox = ({ // 17: 'Maker lost dispute' // 18: 'Taker lost dispute' } else if ((status == 17 && isMaker) || (status == 18 && !isMaker)) { - title = 'You have won the dispute'; + title = 'You have lost the dispute'; prompt = function () { return ; }; bondStatus = 'settled'; } else if ((status == 17 && !isMaker) || (status == 18 && isMaker)) { - title = 'You have lost the dispute'; + title = 'You have won the dispute'; prompt = function () { return ; };