@incodetech/web 0.0.0-dev-20260610-999fd965 → 0.0.0-dev-20260610-1fe09049

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.
@@ -278,6 +278,7 @@ var CurpValidationContent = ({ config, manager: externalManager, onFinish, onErr
278
278
  if (state.status === "failure" || state.status === "generateError") {
279
279
  const canRetry = state.retriesLeft > 0;
280
280
  const title = state.status === "failure" ? t("curp.status.notVerified") ?? "Not verified" : t("curp.status.couldntGenerate") ?? "Couldn't generate CURP";
281
+ const failureRetryLabel = state.status === "failure" && state.fromAutoVerify ? t("curp.verifyManually") : t("curp.status.tryAgain");
281
282
  return /* @__PURE__ */ u(Page, {
282
283
  className: "IncodeCurpValidationPage",
283
284
  children: /* @__PURE__ */ u("div", {
@@ -300,7 +301,7 @@ var CurpValidationContent = ({ config, manager: externalManager, onFinish, onErr
300
301
  type: "button",
301
302
  onClick: () => manager.retry(),
302
303
  "data-testid": "curp-retry",
303
- children: state.status === "failure" ? t("curp.status.tryAgain") ?? "Try again" : t("curp.status.edit") ?? "Edit information"
304
+ children: state.status === "failure" ? failureRetryLabel : t("curp.status.edit") ?? "Edit information"
304
305
  }) })
305
306
  ]
306
307
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@incodetech/web",
3
- "version": "0.0.0-dev-20260610-999fd965",
3
+ "version": "0.0.0-dev-20260610-1fe09049",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/IncodeTechnologies/incode-web-sdk.git"
@@ -255,7 +255,7 @@
255
255
  "qrcode": "^1.5.4",
256
256
  "signature_pad": "^5.1.3",
257
257
  "tailwindcss": "^4.1.17",
258
- "@incodetech/core": "0.0.0-dev-20260610-999fd965"
258
+ "@incodetech/core": "0.0.0-dev-20260610-1fe09049"
259
259
  },
260
260
  "devDependencies": {
261
261
  "@microsoft/api-extractor": "^7.53.3",