From 8b01b13dc6fb30ef16541257755239ea17685a23 Mon Sep 17 00:00:00 2001
From: Ali Asaria <ali.asaria@gmail.com>
Date: Tue, 2 Apr 2024 10:48:41 -0400
Subject: [PATCH] formatting

---
 src/renderer/components/Connect/LocalConnection.tsx | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/renderer/components/Connect/LocalConnection.tsx b/src/renderer/components/Connect/LocalConnection.tsx
index b6eb6de6..ca39f8ec 100644
--- a/src/renderer/components/Connect/LocalConnection.tsx
+++ b/src/renderer/components/Connect/LocalConnection.tsx
@@ -54,12 +54,15 @@ function CheckIfInstalled({ activeStep, setActiveStep }) {
       // First check if there are any system requirement issues
       // If not, then check if installed locally
       // Report on any errors along the way
-      window.electron.ipcRenderer.invoke('server:checkSystemRequirements')
-        .then((setupMessage)=> {
+      window.electron.ipcRenderer
+        .invoke('server:checkSystemRequirements')
+        .then((setupMessage) => {
           if (setupMessage) {
             throw new Error(setupMessage);
           }
-          return window.electron.ipcRenderer.invoke('server:checkIfInstalledLocally');
+          return window.electron.ipcRenderer.invoke(
+            'server:checkIfInstalledLocally'
+          );
         })
         .then((serverIsInstalled) => {
           if (serverIsInstalled) {
-- 
GitLab