+ {isLoading &&
Loading…
}
+ {!isLoading && (data ?? []).length === 0 && (
+
No observers
+ )}
+ {(data ?? []).map((o) => {
+ const active = o.observerId === selectedId;
+ const name = o.displayName ?? o.observerId.slice(0, 8);
+ return (
+
+ );
+ })}
+
+