Skip to content

Commit

Permalink
Fix undefined ticker
Browse files Browse the repository at this point in the history
  • Loading branch information
jorbuedo committed Mar 18, 2024
1 parent 032adf9 commit 2ee26fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export const OpenOrders = () => {
tokenPrice,
tokenAmount,
} = order
const totalReturned = `${fromTokenAmount} ${fromTokenInfo?.ticker}`
const totalReturned = `${fromTokenAmount} ${fromTokenInfo?.ticker ?? fromTokenInfo?.name}`
const collateralUtxo = await getCollateralUtxo()

try {
Expand Down

0 comments on commit 2ee26fe

Please sign in to comment.