Skip to content

Commit

Permalink
add ada identifier to pool token balance
Browse files Browse the repository at this point in the history
  • Loading branch information
hSloan committed Jun 29, 2021
1 parent 1b301b2 commit b74b087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions use-case-2/frontend/src/Frontend.hs
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,9 @@ poolDashboard wid = Workflow $ do
el "p" $ text $ "Token Name: "
<> (T.pack $ show tokenName)
<> " (Composed of tokens "
<> (T.pack $ show tokenNameA)
<> (T.pack $ show $ if tokenNameA == "" then "Ada" else tokenNameA)
<> " and "
<> (T.pack $ show tokenNameB)
<> (T.pack $ show $ if tokenNameB == "" then "Ada" else tokenNameB)
<> " Balance: "
<> (T.pack $ show tokenBalance)
<> " Liquidity Percentage: "
Expand Down

0 comments on commit b74b087

Please sign in to comment.