@chrryai/chrry 1.7.31 → 1.7.32
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 +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3264,7 +3264,7 @@ var init_utils = __esm({
|
|
|
3264
3264
|
};
|
|
3265
3265
|
isFirefox = typeof navigator !== "undefined" && navigator?.userAgent?.includes("Firefox");
|
|
3266
3266
|
config = getSiteConfig(getClientHostname2());
|
|
3267
|
-
VERSION = config.version || "1.7.
|
|
3267
|
+
VERSION = config.version || "1.7.32";
|
|
3268
3268
|
getSlugFromPathname = (path) => {
|
|
3269
3269
|
return getAppAndStoreSlugs(path, {
|
|
3270
3270
|
defaultAppSlug: config.slug,
|
|
@@ -24821,7 +24821,7 @@ function DataProvider({ children, ...rest }) {
|
|
|
24821
24821
|
const [instructions, setInstructions] = (0, import_react21.useState)([]);
|
|
24822
24822
|
const [affiliateStats, setAffiliateStats] = (0, import_react21.useState)(null);
|
|
24823
24823
|
const [loadingAffiliateStats, setLoadingAffiliateStats] = (0, import_react21.useState)(false);
|
|
24824
|
-
const VERSION4 = "1.7.
|
|
24824
|
+
const VERSION4 = "1.7.32";
|
|
24825
24825
|
const [weather, setWeather] = useLocalStorage2("weather", user?.weather || guest?.weather || void 0);
|
|
24826
24826
|
const {
|
|
24827
24827
|
API_URL: API_URL2,
|
|
@@ -35398,7 +35398,8 @@ function Instructions({
|
|
|
35398
35398
|
value: t6(editedTitle),
|
|
35399
35399
|
onChange: (e) => setEditedTitle(e.target.value),
|
|
35400
35400
|
type: "text",
|
|
35401
|
-
placeholder: t6("Feature title")
|
|
35401
|
+
placeholder: t6("Feature title"),
|
|
35402
|
+
style: { flex: 1 }
|
|
35402
35403
|
}
|
|
35403
35404
|
)), /* @__PURE__ */ import_react52.default.createElement(
|
|
35404
35405
|
TextArea,
|
|
@@ -43892,6 +43893,7 @@ function Subscribe({
|
|
|
43892
43893
|
const checkoutSuccessUrl = (() => {
|
|
43893
43894
|
params.set("checkout", "success");
|
|
43894
43895
|
params.set("purchaseType", part2);
|
|
43896
|
+
isE2E2 && fingerprint && params.set("fp", fingerprint);
|
|
43895
43897
|
return `${FRONTEND_URL2}/?${params.toString()}&session_id={CHECKOUT_SESSION_ID}`;
|
|
43896
43898
|
})();
|
|
43897
43899
|
const checkoutCancelUrl = (() => {
|