@seamly/web-ui 21.0.2-beta.1 → 21.0.2-beta.3

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * focus-trap 7.1.0
2
+ * focus-trap 7.0.0
3
3
  * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
4
4
  */
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamly/web-ui",
3
- "version": "21.0.2-beta.1",
3
+ "version": "21.0.2-beta.3",
4
4
  "main": "build/dist/lib/index.js",
5
5
  "types": "build/src/javascripts/index.d.ts",
6
6
  "module": "",
@@ -493,7 +493,7 @@ export class API {
493
493
  this.conversation?.onConnection((connectionState) => {
494
494
  const connected = connectionState === 'join_channel_succeeded'
495
495
  const ready = connectionState === 'attach_channel_succeeded'
496
- if (waitForReady ? ready : connected || ready) {
496
+ if (connected || ready) {
497
497
  this.send(command, payload, waitForReady)
498
498
  }
499
499
  })