From 5a9248e6195e6b7a26c5c4bb182a7e38d0d31fa5 Mon Sep 17 00:00:00 2001 From: mabashian Date: Mon, 20 Jan 2020 16:58:24 -0500 Subject: [PATCH] Prettier --- .../src/screens/Job/WorkflowOutput/WorkflowOutput.jsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.jsx index 9783d9ea7b..d624a34ff0 100644 --- a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.jsx +++ b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.jsx @@ -30,11 +30,7 @@ const fetchWorkflowNodes = async (jobId, pageNo = 1, nodes = []) => { page: pageNo, }); if (data.next) { - return fetchWorkflowNodes( - jobId, - pageNo + 1, - nodes.concat(data.results) - ); + return fetchWorkflowNodes(jobId, pageNo + 1, nodes.concat(data.results)); } return nodes.concat(data.results); };