From 6a82c64bf3d371d70e463e2b5c111b00fd109b9c Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 21 Feb 2025 20:32:29 +0100 Subject: [PATCH 1/3] Update README.md --- zekshop/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zekshop/README.md b/zekshop/README.md index ec88f4976..d85ac0e8c 100644 --- a/zekshop/README.md +++ b/zekshop/README.md @@ -47,7 +47,7 @@ ZeKshop provides users the ability to create Schnorr account with which they can ### app -The client-side of ZeKshop. Contains utils for proving and veryfing an email and an interactive UI of ZeKshop. Steps for running it locally can be found below. +The client-side of ZeKshop. Contains utils for proving and verifying an email and an interactive UI of ZeKshop. Steps for running it locally can be found below. ## Technical guidance From c09d4cc22d427afa1ec13f700bebd5a8ade66ceb Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 21 Feb 2025 20:33:24 +0100 Subject: [PATCH 2/3] Update helpers.ts --- Aztec-Passport/apps/www/src/lib/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aztec-Passport/apps/www/src/lib/helpers.ts b/Aztec-Passport/apps/www/src/lib/helpers.ts index 4c090f4d2..c18aa0252 100644 --- a/Aztec-Passport/apps/www/src/lib/helpers.ts +++ b/Aztec-Passport/apps/www/src/lib/helpers.ts @@ -166,7 +166,7 @@ export const getEmail = async (accessToken: string, service: Service) => { }; export const extractXUsername = (email: string): string => { - // email contains the follwing + // email contains the following // If you requested a password reset for @dummy_testing_, use the confirmation code below to complete the process. If you didn't make this request, ignore this email. // extract username which is after If you requested a password reset for and till , From 6ffd915aaa99e766540ae2526400744bcd32c0cd Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 21 Feb 2025 20:33:53 +0100 Subject: [PATCH 3/3] Update proving.test.ts --- zekshop/circuits/client/tests/proving.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zekshop/circuits/client/tests/proving.test.ts b/zekshop/circuits/client/tests/proving.test.ts index ff83553ed..c32e7e08d 100644 --- a/zekshop/circuits/client/tests/proving.test.ts +++ b/zekshop/circuits/client/tests/proving.test.ts @@ -52,7 +52,7 @@ describe("E2E Tests", () => { afterAll(async () => { prover.destroy(); }); - it("Standart email from ZeKshop", async () => { + it("Standard email from ZeKshop", async () => { const inputs = await generateEmailVerifierInputs( email.data, correctInputParams @@ -62,4 +62,4 @@ describe("E2E Tests", () => { expect(result).toBeTruthy(); }); }); -}); \ No newline at end of file +});