1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

remove display of dt in setup (#1488)

Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro>
This commit is contained in:
mihaisc 2022-06-07 01:54:10 -07:00 committed by GitHub
parent e412dc10d6
commit 857409d5ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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':