@pylonsync/react 0.3.296 → 0.3.297

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/useRoom.ts +1 -1
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.3.296",
6
+ "version": "0.3.297",
7
7
  "type": "module",
8
8
  "main": "./src/index.ts",
9
9
  "types": "./dist/index.d.ts",
@@ -13,8 +13,8 @@
13
13
  "prepack": "bun run build"
14
14
  },
15
15
  "dependencies": {
16
- "@pylonsync/sdk": "0.3.296",
17
- "@pylonsync/sync": "0.3.296"
16
+ "@pylonsync/sdk": "0.3.297",
17
+ "@pylonsync/sync": "0.3.297"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "react": ">=19.0.0"
package/src/useRoom.ts CHANGED
@@ -186,7 +186,7 @@ function startHeartbeat(room: SharedRoom): void {
186
186
  room.peers = next;
187
187
  notify(room);
188
188
  } catch {
189
- // Swallow — next heartbeat will retry. Matches prior behaviour.
189
+ // Swallow — next heartbeat will retry.
190
190
  }
191
191
  }, room.heartbeatInterval);
192
192
  }