From 14eb9f6c1e2db14df9dade69bcf53efb30879870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Thu, 2 Apr 2026 00:18:04 +0300 Subject: [PATCH] feat: initialize main application dashboard and service management UI --- src/renderer/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index 50f4799..7e632f5 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -417,7 +417,7 @@ function App(): JSX.Element { const handleStartAll = async () => { if (!window.api) return - const criticalServices = [settings.serverType] + const criticalServices = ['nginx', 'apache'] for (const s of criticalServices) { if (status[s] === 'stopped') setStatus(prev => ({ ...prev, [s]: 'starting' })) }