diff --git a/src/fireedge/src/client/containers/Login/index.js b/src/fireedge/src/client/containers/Login/index.js
index 90726c8b29..2135385ab0 100644
--- a/src/fireedge/src/client/containers/Login/index.js
+++ b/src/fireedge/src/client/containers/Login/index.js
@@ -178,15 +178,7 @@ function Login() {
const AppLinks = () => {
const { appTitle } = useGeneral()
-
- const isNotCurrentApp = (app) => app !== `${appTitle}`.toLowerCase()
-
- const transformAppTitle = (app) =>
- APPS_WITH_ONE_PREFIX.includes(app)
- ? `One${sentenceCase(app)}`
- : sentenceCase(app)
-
- const otherApps = APPS.filter(isNotCurrentApp).map(transformAppTitle)
+ const otherApps = APPS.filter((app) => app !== `${appTitle}`.toLowerCase())
if (otherApps?.length === 0) {
return null
@@ -195,12 +187,20 @@ const AppLinks = () => {
return otherApps.map((app) => (
-
+
))
}