Add improved settings button

This commit is contained in:
Meierschlumpf
2022-12-04 18:20:25 +01:00
parent d5a3b3f3ba
commit 0970a2b9bc
8 changed files with 78 additions and 92 deletions

View File

@@ -8,6 +8,7 @@ interface MetaTitleChangerProps {
defaultValue: string | undefined;
}
// TODO: change to pageTitle
export const MetaTitleChanger = ({ defaultValue }: MetaTitleChangerProps) => {
const { t } = useTranslation('settings/customization/page-appearance');
const updateConfig = useConfigStore((x) => x.updateConfig);

View File

@@ -8,6 +8,7 @@ interface PageTitleChangerProps {
defaultValue: string | undefined;
}
// TODO: change to dashboard title
export const PageTitleChanger = ({ defaultValue }: PageTitleChangerProps) => {
const { t } = useTranslation('settings/customization/page-appearance');
const updateConfig = useConfigStore((x) => x.updateConfig);