Skip to content

Commit

Permalink
Merge pull request #126 from GrygrFlzr/dev
Browse files Browse the repository at this point in the history
Feature: Swap dicebear user icons to Shapes
  • Loading branch information
sphinxrave authored Nov 30, 2023
2 parents 21aac49 + 85cd232 commit 1bdeba5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/nav/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function NavBar({ onOpen, ...rest }: MobileProps) {
<HStack>
<Avatar
size={"sm"}
src={`https://avatars.dicebear.com/api/jdenticon/${user?.id}.svg`}
src={`https://api.dicebear.com/7.x/shapes/svg?seed=${user?.id}`}
bg="transparent"
/>
<VStack
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/UserSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function UserSettings() {
<Avatar
boxSize={{ base: 24, md: 48 }}
bg="transparent"
src={`https://avatars.dicebear.com/api/jdenticon/${user?.id}.svg`}
src={`https://api.dicebear.com/7.x/shapes/svg?seed=${user?.id}`}
/>
<VStack
w={{ base: undefined, md: "full" }}
Expand Down

0 comments on commit 1bdeba5

Please sign in to comment.