brew-tui 0.3.4 → 0.3.5

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/build/index.js CHANGED
@@ -738,7 +738,7 @@ var useLicenseStore = create2((set, get) => ({
738
738
  }
739
739
  const builtinType = getBuiltinAccountType(license.customerEmail);
740
740
  if (builtinType === "pro") {
741
- set({ status: "pro", license, degradation: "none" });
741
+ set({ status: "pro", license: { ...license, status: "active" }, degradation: "none" });
742
742
  return;
743
743
  }
744
744
  if (builtinType === "free") {
@@ -4245,7 +4245,7 @@ function AccountView() {
4245
4245
  /* @__PURE__ */ jsx30(Box28, { marginTop: 1, children: /* @__PURE__ */ jsxs29(Text29, { color: COLORS.textSecondary, children: [
4246
4246
  status === "pro" ? `d ${t("hint_deactivate")}` : "",
4247
4247
  " ",
4248
- t("app_version", { version: "0.3.4" })
4248
+ t("app_version", { version: "0.3.5" })
4249
4249
  ] }) })
4250
4250
  ] });
4251
4251
  }