diff options
-rw-r--r-- | source/features/bugs-tab.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/bugs-tab.tsx b/source/features/bugs-tab.tsx index a72b9fa2..2e50d25b 100644 --- a/source/features/bugs-tab.tsx +++ b/source/features/bugs-tab.tsx @@ -131,7 +131,7 @@ async function addBugsTab(): Promise<void | false> { bugsCounter.title = bugCount > 999 ? String(bugCount) : ''; } catch (error: unknown) { bugsCounter.remove(); - features.log.error(import.meta.url, error); + throw error; // Likely an API call error that will be handled by the init } } |