Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Previous changes not listed in this document can be traced using Git history.

## [1.0.25] - 2026-05-12

### Changed
- Updated error handling for `Notifications` displaying

## [1.0.24] - 2026-05-11

### Changed
Expand Down
4 changes: 4 additions & 0 deletions src/components/WidgetRenderer/WidgetRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ const WidgetRenderer = ({
)
}

if (code === 403 && message?.includes('notifications')) {
return null
}

if (code === 404 && wasEverLoaded) {
return null
}
Expand Down
Loading