From 5e97dd40d64c5518d78ed7734ece38e91aa1548a Mon Sep 17 00:00:00 2001 From: Aj - Thomas Date: Fri, 6 May 2022 23:19:05 +0200 Subject: [PATCH] Change config name and convert back to LF... --- components/Config/SaveConfig.tsx | 2 +- components/Settings/SettingsMenu.tsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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';