diff --git a/src/components/ColorSchemeToggle/ColorSchemeSwitch.tsx b/src/components/ColorSchemeToggle/ColorSchemeSwitch.tsx
index 9e43a3500..d9c2cd035 100644
--- a/src/components/ColorSchemeToggle/ColorSchemeSwitch.tsx
+++ b/src/components/ColorSchemeToggle/ColorSchemeSwitch.tsx
@@ -40,7 +40,7 @@ export function ColorSchemeSwitch() {
toggleColorScheme()}
size="md"
diff --git a/src/components/Config/SaveConfig.tsx b/src/components/Config/SaveConfig.tsx
index 79bff863d..882f43299 100644
--- a/src/components/Config/SaveConfig.tsx
+++ b/src/components/Config/SaveConfig.tsx
@@ -63,7 +63,7 @@ export default function SaveConfigComponent(props: any) {
size="xs"
leftIcon={}
variant="outline"
- color={config.settings.primary_color || 'red'}
+ color={config.settings.primaryColor || 'red'}
onClick={onClick}
>
Download config
@@ -72,7 +72,7 @@ export default function SaveConfigComponent(props: any) {
size="xs"
leftIcon={}
variant="outline"
- color={config.settings.primary_color || 'red'}
+ color={config.settings.primaryColor || 'red'}
onClick={() => {
axios
.delete(`/api/configs/${config.name}`)
@@ -105,7 +105,7 @@ export default function SaveConfigComponent(props: any) {
size="xs"
leftIcon={}
variant="outline"
- color={config.settings.primary_color || 'red'}
+ color={config.settings.primaryColor || 'red'}
onClick={() => setOpened(true)}
>
Save a copy
diff --git a/src/components/Settings/AdvancedSettings.tsx b/src/components/Settings/AdvancedSettings.tsx
index 0840517fd..45d57bb87 100644
--- a/src/components/Settings/AdvancedSettings.tsx
+++ b/src/components/Settings/AdvancedSettings.tsx
@@ -44,7 +44,7 @@ export default function TitleChanger() {
{...form.getInputProps('favicon')}
/>
-