mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 07:25:48 +01:00
🔥 Remove default values for the Advanced settings
This commit is contained in:
@@ -145,7 +145,7 @@ export function SettingsMenuButton(props: any) {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Drawer
|
<Drawer
|
||||||
size="auto"
|
size="xl"
|
||||||
padding="xl"
|
padding="xl"
|
||||||
position="right"
|
position="right"
|
||||||
title={<Title order={3}>Settings</Title>}
|
title={<Title order={3}>Settings</Title>}
|
||||||
|
|||||||
@@ -10,9 +10,6 @@ export function getConfig(name: string) {
|
|||||||
configName: name,
|
configName: name,
|
||||||
config: {
|
config: {
|
||||||
name: name.toString(),
|
name: name.toString(),
|
||||||
title: 'Homarr 🦞',
|
|
||||||
logo: '/imgs/logo.png',
|
|
||||||
favicon: '/favicon.svg',
|
|
||||||
services: [],
|
services: [],
|
||||||
settings: {
|
settings: {
|
||||||
searchUrl: 'https://www.google.com/search?q=',
|
searchUrl: 'https://www.google.com/search?q=',
|
||||||
|
|||||||
@@ -18,9 +18,6 @@ const configContext = createContext<configContextType>({
|
|||||||
services: [],
|
services: [],
|
||||||
settings: {
|
settings: {
|
||||||
searchUrl: 'https://google.com/search?q=',
|
searchUrl: 'https://google.com/search?q=',
|
||||||
title: '',
|
|
||||||
logo: '',
|
|
||||||
favicon: '',
|
|
||||||
},
|
},
|
||||||
modules: {},
|
modules: {},
|
||||||
},
|
},
|
||||||
@@ -47,9 +44,6 @@ export function ConfigProvider({ children }: Props) {
|
|||||||
services: [],
|
services: [],
|
||||||
settings: {
|
settings: {
|
||||||
searchUrl: 'https://www.google.com/search?q=',
|
searchUrl: 'https://www.google.com/search?q=',
|
||||||
title: '',
|
|
||||||
logo: '',
|
|
||||||
favicon: '',
|
|
||||||
},
|
},
|
||||||
modules: {},
|
modules: {},
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user