Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Aztec-Passport/apps/www/src/lib/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ,

Expand Down
2 changes: 1 addition & 1 deletion zekshop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions zekshop/circuits/client/tests/proving.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -62,4 +62,4 @@ describe("E2E Tests", () => {
expect(result).toBeTruthy();
});
});
});
});