Skip to content

Commit

Permalink
Frontend Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
blessedcoolant committed Dec 30, 2022
1 parent 9f71988 commit 9fded69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/features/system/components/StatusIndicator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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})`;
}
}

Expand Down

0 comments on commit 9fded69

Please sign in to comment.