♻️ Fix default img paths

This commit is contained in:
Manuel
2023-04-11 18:59:56 +02:00
parent d920c6319f
commit 530b158f4e
4 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ export const BackgroundChanger = () => {
return (
<TextInput
label={t('background.label')}
placeholder="/imgs/background.png"
placeholder="/imgs/backgrounds/background.png"
value={backgroundImageUrl}
onChange={handleChange}
/>

View File

@@ -9,7 +9,7 @@ export const FaviconChanger = () => {
const updateConfig = useConfigStore((x) => x.updateConfig);
const { config, name: configName } = useConfigContext();
const [faviconUrl, setFaviconUrl] = useState(
config?.settings.customization.faviconUrl ?? '/imgs/favicon/favicon-squared.png'
config?.settings.customization.faviconUrl ?? '/imgs/favicon/favicon.svg'
);
if (!configName) return null;