@hydra-acp/browser 0.1.17 → 0.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13193,11 +13193,7 @@ ${recent}`;
13193
13193
  try {
13194
13194
  const data = await api("/api/sessions");
13195
13195
  const rawSessions = data.sessions ?? [];
13196
- const filtered = rawSessions.filter((s) => {
13197
- const oc = s.originatingClient;
13198
- return oc?.name !== "hydra-acp-cat";
13199
- });
13200
- const newSessions = filtered;
13196
+ const newSessions = rawSessions;
13201
13197
  const hadBanner = state.banner !== null;
13202
13198
  const sessionsChanged = !sameValue(state.sessions, newSessions);
13203
13199
  state.sessions = newSessions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hydra-acp/browser",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Browser-based UI for hydra-acp sessions.",
5
5
  "license": "MIT",
6
6
  "type": "module",