diff --git a/components/Config/SaveConfig.tsx b/components/Config/SaveConfig.tsx index 805af0156..d12f7ad22 100644 --- a/components/Config/SaveConfig.tsx +++ b/components/Config/SaveConfig.tsx @@ -7,7 +7,7 @@ export default function SaveConfigComponent(props: any) { const { config } = useConfig(); function onClick(e: any) { if (config) { - fileDownload(JSON.stringify(config, null, '\t'), 'services.json'); + fileDownload(JSON.stringify(config, null, '\t'), 'config.json'); } } return ( diff --git a/components/Settings/SettingsMenu.tsx b/components/Settings/SettingsMenu.tsx index 6c20b1fa7..3da9f5e7d 100644 --- a/components/Settings/SettingsMenu.tsx +++ b/components/Settings/SettingsMenu.tsx @@ -6,7 +6,6 @@ import { Title, Text, Tooltip, - TextInput, SegmentedControl, } from '@mantine/core'; import { useState } from 'react';