feat: initialize main application dashboard and service management UI

This commit is contained in:
Ümit Tunç
2026-04-02 00:18:04 +03:00
parent 9059314cd1
commit 14eb9f6c1e
+1 -1
View File
@@ -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' }))
}