@netless/fastboard-ui 0.3.5 → 0.3.6

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.
package/dist/index.mjs CHANGED
@@ -10576,7 +10576,7 @@ function createUI(app, div) {
10576
10576
  }
10577
10577
  };
10578
10578
  if (div) {
10579
- ui.mount(div);
10579
+ ui.mount(div, { app });
10580
10580
  }
10581
10581
  return ui;
10582
10582
  }
@@ -10603,7 +10603,7 @@ function createReplayUI(player, div) {
10603
10603
  }
10604
10604
  };
10605
10605
  if (div) {
10606
- ui.mount(div);
10606
+ ui.mount(div, { player });
10607
10607
  }
10608
10608
  return ui;
10609
10609
  }