Skip to content

Commit

Permalink
Merge pull request #158 from nepalcodes/update-profile-to-cats
Browse files Browse the repository at this point in the history
Update avatar to be cats
  • Loading branch information
binamkayastha authored Jul 28, 2024
2 parents 33ad9ed + d570407 commit 457d58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nepalingo-web/src/components/UserAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useAuth } from "@/hooks/Auth";
const UserAvatar: React.FC = () => {
const { user } = useAuth();
const username = user?.user_metadata?.username;
const avatarUrl = `https://robohash.org/${username}.png`;
const avatarUrl = `https://robohash.org/${username}.png?set=set4`;

return (
<img
Expand Down

0 comments on commit 457d58d

Please sign in to comment.