Skip to content

Commit

Permalink
Update packages/documentation/scripts/generateAttribution.js
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Bailey <5341706+jakebailey@users.noreply.github.com>
  • Loading branch information
navya9singh and jakebailey authored Jan 31, 2025
1 parent 8e293d2 commit 2f9c2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/documentation/scripts/generateAttribution.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const gravatarURLForAuthor = (email) => {
return "https://avatars.githubusercontent.com/u/49038?s=100&u=0b9ac5bf42a8ea2543a05191e150e0213456744e&v=4";

default:
return crypto.createHash("sha512").update(email).digest("hex");
return crypto.createHash("sha256").update(email).digest("hex");
}
};

Expand Down

0 comments on commit 2f9c2fd

Please sign in to comment.