Add connection heartbeat

This commit is contained in:
Daniel Pupius
2025-04-30 10:24:55 -07:00
parent f83e6a9c31
commit ebb4e1306f
2 changed files with 13 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ export const ConnectionStatus: React.FC<ConnectionStatusProps> = ({
text: "Connecting",
colorClass: "text-blue-400",
};
} else if (status.includes("Connected")) {
} else if (status.includes("Connected") || status.includes("Heartbeat")) {
return {
icon: <Wifi className="h-5 w-5 text-green-400" />,
text: "Connected",