diff --git a/src/renderer/Presentational/Notifications/notificationsData.json b/src/renderer/Presentational/Notifications/notificationsData.json index bc2d071b..8b00dfd0 100644 --- a/src/renderer/Presentational/Notifications/notificationsData.json +++ b/src/renderer/Presentational/Notifications/notificationsData.json @@ -16,7 +16,7 @@ { "unread": true, "status": "completed", - "title": "Client successfuly updated", + "title": "Client successfully updated", "description": "Lodestar consensus client", "timestamp": 1673384953 }, diff --git a/src/renderer/Presentational/PodmanInstallation/PodmanInstallation.tsx b/src/renderer/Presentational/PodmanInstallation/PodmanInstallation.tsx index 029e7b29..51d1ac5e 100644 --- a/src/renderer/Presentational/PodmanInstallation/PodmanInstallation.tsx +++ b/src/renderer/Presentational/PodmanInstallation/PodmanInstallation.tsx @@ -141,7 +141,7 @@ const PodmanInstallation = ({ setDownloadComplete(true); } } else { - console.error('recieved empty podman message'); + console.error('received empty podman message'); } }; diff --git a/src/renderer/ethers.js b/src/renderer/ethers.js index 7721a6a2..0c4c72ef 100644 --- a/src/renderer/ethers.js +++ b/src/renderer/ethers.js @@ -11911,7 +11911,7 @@ EC.prototype.recoverPubKey = function (msg, signature$1, j, enc) { var isYOdd = j & 1; var isSecondKey = j >> 1; if (r.cmp(this.curve.p.umod(this.curve.n)) >= 0 && isSecondKey) - throw new Error('Unable to find sencond key candinate'); + throw new Error('Unable to find sencond key candidate'); if (isSecondKey) r = this.curve.pointFromX(r.add(this.curve.n), isYOdd); else r = this.curve.pointFromX(r, isYOdd); var rInv = signature$1.r.invm(n);