(serverId)
| 33 | } |
| 34 | |
| 35 | function getClientState(serverId) { |
| 36 | const activeClients = getActiveClients(); |
| 37 | return activeClients.find((c) => c.server?.id === serverId) || null; |
| 38 | } |
| 39 | |
| 40 | function getStatusColor(status) { |
| 41 | switch (status) { |
no test coverage detected