From 857409d5ad6c9dcb331a3a1cf2664158618ce05d Mon Sep 17 00:00:00 2001 From: mihaisc Date: Tue, 7 Jun 2022 01:54:10 -0700 Subject: [PATCH] remove display of dt in setup (#1488) Signed-off-by: mihaisc --- src/components/@shared/PoolTransactions/Title.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/@shared/PoolTransactions/Title.tsx b/src/components/@shared/PoolTransactions/Title.tsx index 4c2de1f05..e827fb792 100644 --- a/src/components/@shared/PoolTransactions/Title.tsx +++ b/src/components/@shared/PoolTransactions/Title.tsx @@ -39,15 +39,10 @@ function getTitle(row: PoolTransaction, locale: string) { case 'SETUP': { const firstToken = row.baseToken const firstTokenSymbol = firstToken?.symbol - const secondToken = row.datatoken - const secondTokenSymbol = secondToken?.symbol title += `Create pool with ${formatPrice( Math.abs(row.baseTokenValue).toString(), locale - )}${firstTokenSymbol} and ${formatPrice( - Math.abs(row.datatokenValue).toString(), - locale - )}${secondTokenSymbol}` + )}${firstTokenSymbol}` break } case 'JOIN':