diff --git a/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js b/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js
index 8574d0b34a..6831fb464b 100644
--- a/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js
+++ b/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js
@@ -1,16 +1,23 @@
import Icon from '../../../shared/components/icon'
import { useTranslation } from 'react-i18next'
+import { OverlayTrigger, Tooltip } from 'react-bootstrap'
function BackToProjectsButton() {
const { t } = useTranslation()
+
return (
-
-
-
+
+ {t('back_to_your_projects')}
+
+ }
+ >
+
+
+
+
)
}