diff --git a/CHANGELOG.md b/CHANGELOG.md index eaafaf10..e635912f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ### Fixed - (**Navigation**) Fix obsolete extensions being included in the updatable extensions info +- (**Extensions**) Fix showing the uninstall button twice in the extension info page in case the extensions is obsolete and has a update at the same time ## [20260508.01] (r3136) - 2026-05-08 diff --git a/src/features/extension/info/screens/ExtensionInfo.tsx b/src/features/extension/info/screens/ExtensionInfo.tsx index 5dbb22ba..635ce643 100644 --- a/src/features/extension/info/screens/ExtensionInfo.tsx +++ b/src/features/extension/info/screens/ExtensionInfo.tsx @@ -81,7 +81,7 @@ export const ExtensionInfo = () => { - {extension.hasUpdate && } + {extension.hasUpdate && !extension.isObsolete && } {sources.map((source) => (