diff --git a/resources.qrc b/resources.qrc
index 52e0a16f6c..8771c776a0 100644
--- a/resources.qrc
+++ b/resources.qrc
@@ -49,7 +49,6 @@
src/gui/tray/EncryptionTokenDiscoveryDialog.qml
src/gui/tray/NCBusyIndicator.qml
src/gui/tray/NCIconWithBackgroundImage.qml
- src/gui/tray/NCToolTip.qml
src/gui/tray/NCProgressBar.qml
src/gui/tray/EnforcedPlainTextLabel.qml
theme/Style/Style.qml
diff --git a/src/gui/tray/NCToolTip.qml b/src/gui/tray/NCToolTip.qml
deleted file mode 100644
index 74ae72c60c..0000000000
--- a/src/gui/tray/NCToolTip.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: GPL-2.0-or-later
- */
-
-import QtQml
-import QtQuick
-import QtQuick.Controls
-
-import Style
-
-ToolTip {
- id: toolTip
- clip: true
- delay: Qt.styleHints.mousePressAndHoldInterval
- contentItem: EnforcedPlainTextLabel {
- text: toolTip.text
- wrapMode: Text.Wrap
- }
-}