From 9fded69f0c1d2c7d5e414096931f5cbf338b9145 Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Sat, 31 Dec 2022 04:46:39 +1300 Subject: [PATCH] Frontend Lint --- frontend/src/features/system/components/StatusIndicator.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/features/system/components/StatusIndicator.tsx b/frontend/src/features/system/components/StatusIndicator.tsx index 6e16a537fd..c2227d1f26 100644 --- a/frontend/src/features/system/components/StatusIndicator.tsx +++ b/frontend/src/features/system/components/StatusIndicator.tsx @@ -61,7 +61,9 @@ const StatusIndicator = () => { if (statusMessage) if (isProcessing) { if (totalIterations > 1) { - statusMessage = t(statusMessage as keyof typeof t) + ` (${currentIteration}/${totalIterations})`; + statusMessage = + t(statusMessage as keyof typeof t) + + ` (${currentIteration}/${totalIterations})`; } }