From d5a04b3b502cce557b6b023eeba89bf3d37d4bb8 Mon Sep 17 00:00:00 2001 From: michael1011 Date: Thu, 27 Dec 2018 16:25:26 +0100 Subject: [PATCH] fix: update invoice message --- src/views/swap/swapActions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/swap/swapActions.js b/src/views/swap/swapActions.js index dbc162a..0def167 100644 --- a/src/views/swap/swapActions.js +++ b/src/views/swap/swapActions.js @@ -76,7 +76,7 @@ export const startListening = (dispatch, swapId) => { source.onmessage = event => { const data = JSON.parse(event.data); - let message = 'Paying Lightning invoice'; + let message = 'Paying Lightning invoice...'; if (data.message.startsWith('Invoice paid:')) { message = 'Done';