@chrryai/chrry 1.5.36 → 1.5.37

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.js CHANGED
@@ -2093,7 +2093,7 @@ var init_utils = __esm({
2093
2093
  };
2094
2094
  isFirefox = typeof navigator !== "undefined" && navigator?.userAgent?.includes("Firefox");
2095
2095
  config = getSiteConfig(getClientHostname());
2096
- VERSION = config.version || "1.5.36";
2096
+ VERSION = config.version || "1.5.37";
2097
2097
  getSlugFromPathname = (path) => {
2098
2098
  return getAppAndStoreSlugs(path, {
2099
2099
  defaultAppSlug: config.slug,
@@ -24422,7 +24422,7 @@ function DataProvider({ children, ...rest }) {
24422
24422
  const [instructions, setInstructions] = (0, import_react21.useState)([]);
24423
24423
  const [affiliateStats, setAffiliateStats] = (0, import_react21.useState)(null);
24424
24424
  const [loadingAffiliateStats, setLoadingAffiliateStats] = (0, import_react21.useState)(false);
24425
- const VERSION4 = "1.5.36";
24425
+ const VERSION4 = "1.5.37";
24426
24426
  const [weather, setWeather] = useLocalStorage2("weather", user?.weather || guest?.weather || void 0);
24427
24427
  const {
24428
24428
  API_URL: API_URL2,
@@ -41656,7 +41656,7 @@ function Menu({
41656
41656
  const threadApp = storeApps.find(
41657
41657
  (app2) => app2.id === thread2.appId
41658
41658
  );
41659
- if (thread2.appId && threadApp && !hasStoreApps(threadApp)) {
41659
+ if (thread2.appId && (!threadApp || !hasStoreApps(threadApp))) {
41660
41660
  setLoadingThreadId(thread2.id);
41661
41661
  setLoadingAppId(thread2.appId);
41662
41662
  return;