diff --git a/src/renderer/src/components/SettingsView.tsx b/src/renderer/src/components/SettingsView.tsx index b361226..3fa1320 100644 --- a/src/renderer/src/components/SettingsView.tsx +++ b/src/renderer/src/components/SettingsView.tsx @@ -378,7 +378,7 @@ export function SettingsView(): React.JSX.Element { function copyErrorReport(): void { // The button is disabled when there are no entries, so `report` is always - // non-empty here -- no need for an unreachable "No errors logged." fallback (L159). + // non-empty here -- no need for an unreachable empty-report fallback (L159). const report = errorEntries .map((e) => [new Date(e.occurredAt).toLocaleString(), e.title ?? e.url, e.url, e.error].join('\n')