diff --git a/client/ui/frontend/src/modules/settings/SettingsTroubleshooting.tsx b/client/ui/frontend/src/modules/settings/SettingsTroubleshooting.tsx index 50288e3cc..d3aa060fb 100644 --- a/client/ui/frontend/src/modules/settings/SettingsTroubleshooting.tsx +++ b/client/ui/frontend/src/modules/settings/SettingsTroubleshooting.tsx @@ -13,6 +13,7 @@ import { Input } from "@/components/inputs/Input"; import { Label } from "@/components/typography/Label"; import { SquareIcon } from "@/components/SquareIcon"; import { cn } from "@/lib/cn"; +import { formatRemaining } from "@/lib/formatters"; import type { DebugStage } from "@/contexts/DebugBundleContext"; import { useDebugBundleContext } from "@/contexts/DebugBundleContext"; import { SectionGroup, SettingsBottomBar } from "@/modules/settings/SettingsSection.tsx"; @@ -133,13 +134,24 @@ function ProgressSection({ -
+
{stageLabel(stage, t)} {t("settings.troubleshooting.progress.description")}
+ {stage.kind === "capturing" && ( +
+ {formatRemaining(stage.remainingSec)} +
+ )} +