From 718210ccd8383be933b94fdd938b6495e4d2298a Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Sun, 4 Dec 2022 02:11:59 -0800 Subject: [PATCH] Fix dispute resolution titles --- frontend/src/components/TradeBox/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ; };