From 8ba2a551805888d208c377f0552cd9eec675fd2b Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Tue, 26 Apr 2022 08:38:28 -0600 Subject: [PATCH] Your trades -> Your bets --- web/components/contract/contract-tabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/contract/contract-tabs.tsx b/web/components/contract/contract-tabs.tsx index 31ba0857..5a9da163 100644 --- a/web/components/contract/contract-tabs.tsx +++ b/web/components/contract/contract-tabs.tsx @@ -51,7 +51,7 @@ export function ContractTabs(props: { { title: 'Timeline', content: activity }, ...(!user || !userBets?.length ? [] - : [{ title: 'Your trades', content: yourTrades }]), + : [{ title: 'Your bets', content: yourTrades }]), ]} /> )