diff --git a/src/actions/livepeer.js b/src/actions/livepeer.js index a96e5dc..d689bf3 100644 --- a/src/actions/livepeer.js +++ b/src/actions/livepeer.js @@ -180,7 +180,7 @@ export const getEvents = () => async dispatch => { eventDescription = } else { - const subtext = "moved stake to a new orchestrator"; + const subtext = "moved stake"; const descriptions = [ tmpAmount.toFixed(2) + " LPT" ] @@ -315,8 +315,9 @@ export const getEvents = () => async dispatch => { if (amount1 < thresholdStaking && amount2 < thresholdFees) { continue; } - const subtext = "delegator claimed " + (eventObj.data.endRound - eventObj.data.startRound + 1) + " rounds of rewards"; + const subtext = "delegator claimed rewards"; const descriptions = [ + "of " + (eventObj.data.endRound - eventObj.data.startRound + 1) + " rounds", "+" + amount1.toFixed(2) + " LPT rewards", "+" + amount2.toFixed(4) + " Eth fees" ] diff --git a/src/components/TicketViewer.js b/src/components/TicketViewer.js index 020879e..2473fdf 100644 --- a/src/components/TicketViewer.js +++ b/src/components/TicketViewer.js @@ -3,7 +3,7 @@ import React from "react"; const Ticket = (obj) => { return (
-
+

{obj.icon}

@@ -14,7 +14,7 @@ const Ticket = (obj) => {
-
+
{obj.descriptions.map(function (thisTextItem, i) { return (