diff --git a/CHANGELOG.md b/CHANGELOG.md
index 150ed7d2a..b9d71e62d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
+- Fix: App logo not seen in the App store section of nextcloud [#1042](https://github.com/nextcloud/integration_openproject/pull/1042)
+
### Changed
### Removed
diff --git a/REUSE.toml b/REUSE.toml
index 25b549162..480d5826b 100644
--- a/REUSE.toml
+++ b/REUSE.toml
@@ -48,7 +48,7 @@ SPDX-FileCopyrightText = "2022-2024 Jankari Tech Pvt. Ltd."
SPDX-License-Identifier = "AGPL-3.0-or-later"
[[annotations]]
-path = ["img/app.svg", "img/app-dark.svg", "img/openproject-icon.svg"]
+path = ["img/app.svg", "img/app-dark.svg"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2012-2025 OpenProject GmbH"
SPDX-License-Identifier = "LicenseRef-OpenProjectTrademarks"
diff --git a/img/app-dark.svg b/img/app-dark.svg
index 2d5fa2903..97043bed4 100644
--- a/img/app-dark.svg
+++ b/img/app-dark.svg
@@ -1 +1,4 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/img/app.svg b/img/app.svg
index 2e37d3317..a4562cc0f 100644
--- a/img/app.svg
+++ b/img/app.svg
@@ -1 +1,4 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/img/openproject-icon.svg b/img/openproject-icon.svg
deleted file mode 100644
index f7a577578..000000000
--- a/img/openproject-icon.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
diff --git a/src/projectTab.js b/src/projectTab.js
index f3521361e..ae94eb840 100644
--- a/src/projectTab.js
+++ b/src/projectTab.js
@@ -9,7 +9,7 @@ import vueCustomElement from 'vue-custom-element'
import { registerSidebarTab } from '@nextcloud/files'
import './bootstrap.js'
-import OpenProjectSvgIcon from '../img/openproject-icon.svg'
+import OpenProjectSvgIcon from '../img/app-dark.svg'
import ProjectsTab from './views/ProjectsTab.vue'
Vue.use(vueCustomElement)