🔥 Remove default values for the Advanced settings

This commit is contained in:
ajnart
2022-06-07 08:20:19 +02:00
parent 1a642ad7b4
commit ced18da65a
3 changed files with 1 additions and 10 deletions

View File

@@ -145,7 +145,7 @@ export function SettingsMenuButton(props: any) {
return (
<>
<Drawer
size="auto"
size="xl"
padding="xl"
position="right"
title={<Title order={3}>Settings</Title>}

View File

@@ -10,9 +10,6 @@ export function getConfig(name: string) {
configName: name,
config: {
name: name.toString(),
title: 'Homarr 🦞',
logo: '/imgs/logo.png',
favicon: '/favicon.svg',
services: [],
settings: {
searchUrl: 'https://www.google.com/search?q=',

View File

@@ -18,9 +18,6 @@ const configContext = createContext<configContextType>({
services: [],
settings: {
searchUrl: 'https://google.com/search?q=',
title: '',
logo: '',
favicon: '',
},
modules: {},
},
@@ -47,9 +44,6 @@ export function ConfigProvider({ children }: Props) {
services: [],
settings: {
searchUrl: 'https://www.google.com/search?q=',
title: '',
logo: '',
favicon: '',
},
modules: {},
});