@social-mail/social-mail-client 1.9.50 → 1.9.51

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.
@@ -30568,15 +30568,19 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
30568
30568
  _export("default", HomePage = class HomePage extends ContentPage {
30569
30569
  init() {
30570
30570
  return __awaiter(this, void 0, void 0, function* () {
30571
- this.renderer = XNode.create("div", null, XNode.create("home-page", null));
30572
30571
  if (PositronInBrowser.isAvailable || isMobileView) {
30572
+ this.renderer = XNode.create("div", null, XNode.create("div", {
30573
+ "data-layout": "center-all"
30574
+ }, XNode.create("div", null, "Opening mailbox....")));
30573
30575
  const menuService = this.resolve(MenuService);
30574
30576
  yield menuService.firstSearch;
30575
30577
  const id = menuService.mailboxes[0].mailboxID;
30576
30578
  AppCommands.openMailbox.dispatch({
30577
30579
  id
30578
30580
  });
30581
+ return;
30579
30582
  }
30583
+ this.renderer = XNode.create("div", null, XNode.create("home-page", null));
30580
30584
  });
30581
30585
  }
30582
30586
  });