From e0795f8bf2579efbf655ee19dbe702d044e6111a Mon Sep 17 00:00:00 2001 From: Marco van Dijk Date: Mon, 21 Mar 2022 12:16:06 +0100 Subject: [PATCH] Fix joke which broke everything --- src/actions/livepeer.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/actions/livepeer.js b/src/actions/livepeer.js index ba3f162..34cf27c 100644 --- a/src/actions/livepeer.js +++ b/src/actions/livepeer.js @@ -352,13 +352,10 @@ export const getEvents = () => async dispatch => { const amount1 = parseFloat(eventObj.data.amount) / 1000000000000000000; const subtext = "called reward"; const descriptions = [ - "+" + amount1.toFixed(2) + " LPT" + "+" + amount1.toFixed(2) + " LPT" + (Math.floor(amount1) == 69 ? "... Nice!" : "") ] const txt = - if (Math.floor(amount1) == 69) { - txt += "... Nice!"; - } finalEventList.push({ eventType: "Reward", eventDescription: txt,