+ {error ? (
+
+ {error?.message || error?.error || "AI Workspace недоступен"}
+
+ ) : isLoading ? (
+
Загрузка
+ ) : data?.executors?.length ? (
+ data.executors.map((executor) => (
+
+
+
+
+
{executor.name}
+
+ {executor.connectionMode === "hub" ? executor.pairingCode || "hub" : "direct"}
+
+
+
+
+
+ {executor.status}
+
+
+ ))
+ ) : (
+
+ Устройства не подключены
+
+ )}
+