diff --git a/src/components/layout/Logo.tsx b/src/components/layout/Logo.tsx
index 5e1476e7e..a4530a1de 100644
--- a/src/components/layout/Logo.tsx
+++ b/src/components/layout/Logo.tsx
@@ -4,7 +4,7 @@ import * as React from 'react';
import { useColorTheme } from '../../tools/color';
import { useConfig } from '../../tools/state';
-export function Logo({ style }: any) {
+export function Logo({ style, withoutText }: any) {
const { config } = useConfig();
const { primaryColor, secondaryColor } = useColorTheme();
@@ -17,26 +17,28 @@ export function Logo({ style }: any) {
position: 'relative',
}}
/>
-
-
- {config.settings.title || 'Homarr'}
-
-
+
+ {config.settings.title || 'Homarr'}
+
+
+ )}
);
}