From 182e1d26eb4401f404361e83bb7f134cd720eb60 Mon Sep 17 00:00:00 2001 From: Dustin Loring Date: Mon, 9 Dec 2024 17:28:52 -0500 Subject: [PATCH] fix formatting error on conflict resolve --- app/components/settings/SettingsWindow.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/components/settings/SettingsWindow.tsx b/app/components/settings/SettingsWindow.tsx index d274baa..0910859 100644 --- a/app/components/settings/SettingsWindow.tsx +++ b/app/components/settings/SettingsWindow.tsx @@ -205,13 +205,12 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => { const versionHash = commit.commit; // Get the version hash from commit.json - const handleSaveConnection = () => { Cookies.set('githubUsername', githubUsername); Cookies.set('githubToken', githubToken); toast.success('GitHub credentials saved successfully!'); + }; - // Update the toggle handlers to save to cookies const handleToggleDebug = (enabled: boolean) => { setIsDebugEnabled(enabled); Cookies.set('isDebugEnabled', String(enabled));