Skip to content

Commit

Permalink
fix(profile.js): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
supersonictw committed Nov 16, 2024
1 parent 23b3791 commit a3b710f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const hashToGravatar = (hash, size=80) => {
return `https://api.gravatar.com/avatar/${hash}?d=identicon&s=${size}`;
};

export const useProfile = (avatarsize=80) => {
export const useProfile = (avatarSize=80) => {
const saraToken = localStorage.getItem(saraTokenName);
if (!saraToken) {
return null;
Expand Down

0 comments on commit a3b710f

Please sign in to comment.