@social-mail/social-mail-client 1.9.49 → 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.
@@ -29678,15 +29678,19 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
29678
29678
  _export("default", HomePage = class HomePage extends ContentPage {
29679
29679
  init() {
29680
29680
  return __awaiter(this, void 0, void 0, function* () {
29681
- this.renderer = XNode.create("div", null, XNode.create("home-page", null));
29682
29681
  if (PositronInBrowser.isAvailable || isMobileView) {
29682
+ this.renderer = XNode.create("div", null, XNode.create("div", {
29683
+ "data-layout": "center-all"
29684
+ }, XNode.create("div", null, "Opening mailbox....")));
29683
29685
  const menuService = this.resolve(MenuService);
29684
29686
  yield menuService.firstSearch;
29685
29687
  const id = menuService.mailboxes[0].mailboxID;
29686
29688
  AppCommands.openMailbox.dispatch({
29687
29689
  id
29688
29690
  });
29691
+ return;
29689
29692
  }
29693
+ this.renderer = XNode.create("div", null, XNode.create("home-page", null));
29690
29694
  });
29691
29695
  }
29692
29696
  });