Skip to content

Commit

Permalink
fix: typo in findSharedProfile, email
Browse files Browse the repository at this point in the history
  • Loading branch information
brettski committed Nov 30, 2023
1 parent 5072c49 commit ed8cc1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "that-api-members",
"version": "4.3.0",
"version": "4.3.1",
"description": "THATConference.com members service.",
"main": "index.js",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/findSharedProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const findSharedProfile = async ({ memberId, firestore }) => {
id: memberRecord.id,
firstName: memberRecord.firstName,
lastName: memberRecord.lastName,
email: memberRecord.lastName,
email: memberRecord.email,
company: memberRecord.company,
};
}
Expand All @@ -43,7 +43,7 @@ export const findSharedProfileProfileLoader = async ({
id: memberRecord.id,
firstName: memberRecord.firstName,
lastName: memberRecord.lastName,
email: memberRecord.lastName,
email: memberRecord.email,
company: memberRecord.company,
};
}
Expand Down

0 comments on commit ed8cc1d

Please sign in to comment.