@injectivelabs/exceptions 1.17.2-alpha.11 → 1.17.2-alpha.13

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.
@@ -2445,7 +2445,7 @@ const isCommonLockedError = (error) => {
2445
2445
  "Ledger device",
2446
2446
  "UNKNOWN_ERROR"
2447
2447
  ];
2448
- return commonMessages.some((m) => m.includes(error)) || commonMessages.some((m) => error.toLowerCase().includes(m)) || commonMessages.some((m) => m.toLowerCase().includes(error.toLowerCase()));
2448
+ return commonMessages.some((m) => m.includes(error)) || commonMessages.some((m) => error.toLowerCase().includes(m.toLowerCase())) || commonMessages.some((m) => m.toLowerCase().includes(error.toLowerCase()));
2449
2449
  };
2450
2450
 
2451
2451
  //#endregion
package/dist/esm/index.js CHANGED
@@ -2444,7 +2444,7 @@ const isCommonLockedError = (error) => {
2444
2444
  "Ledger device",
2445
2445
  "UNKNOWN_ERROR"
2446
2446
  ];
2447
- return commonMessages.some((m) => m.includes(error)) || commonMessages.some((m) => error.toLowerCase().includes(m)) || commonMessages.some((m) => m.toLowerCase().includes(error.toLowerCase()));
2447
+ return commonMessages.some((m) => m.includes(error)) || commonMessages.some((m) => error.toLowerCase().includes(m.toLowerCase())) || commonMessages.some((m) => m.toLowerCase().includes(error.toLowerCase()));
2448
2448
  };
2449
2449
 
2450
2450
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@injectivelabs/exceptions",
3
- "version": "1.17.2-alpha.11",
3
+ "version": "1.17.2-alpha.13",
4
4
  "description": "List of exceptions that can be reused throughout Injective's projects.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {