@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.
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -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
|