From 980184e7ce36adbc084704ea5b7f3681527a8182 Mon Sep 17 00:00:00 2001 From: Anna Melzer Date: Wed, 31 Oct 2018 17:48:30 +0100 Subject: [PATCH] fix linting for transactionlistrecent component --- src/renderer/component/transactionListRecent/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/renderer/component/transactionListRecent/index.js b/src/renderer/component/transactionListRecent/index.js index 3a59bc82f..f4890679f 100644 --- a/src/renderer/component/transactionListRecent/index.js +++ b/src/renderer/component/transactionListRecent/index.js @@ -17,4 +17,7 @@ const perform = dispatch => ({ fetchTransactions: () => dispatch(doFetchTransactions()), }); -export default connect(select, perform)(TransactionListRecent); +export default connect( + select, + perform +)(TransactionListRecent);