From af0212c6f21d1f74f98f6616713c87cce6ab43cb Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Thu, 8 May 2025 08:53:39 +0200 Subject: [PATCH 1/3] Update notificationsData.json --- .../Presentational/Notifications/notificationsData.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/Presentational/Notifications/notificationsData.json b/src/renderer/Presentational/Notifications/notificationsData.json index bc2d071b2..8b00dfd02 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 }, From 4d3668f96cbaa4bd5931dad86668057a4711e46e Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Thu, 8 May 2025 08:54:11 +0200 Subject: [PATCH 2/3] Update PodmanInstallation.tsx --- .../Presentational/PodmanInstallation/PodmanInstallation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/Presentational/PodmanInstallation/PodmanInstallation.tsx b/src/renderer/Presentational/PodmanInstallation/PodmanInstallation.tsx index 029e7b294..51d1ac5ef 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'); } }; From 619b19f0e890eed61d54de74100ceaead7c86094 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Thu, 8 May 2025 08:55:12 +0200 Subject: [PATCH 3/3] Update ethers.js --- src/renderer/ethers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/ethers.js b/src/renderer/ethers.js index 7721a6a2a..0c4c72efa 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);