Skip to content

Commit 2787eb1

Browse files
authored
Merge pull request #129 from HolodexNet/dev
Deploy to master
2 parents 3149fc6 + 8a9465d commit 2787eb1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/nav/NavBar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export function NavBar({ onOpen, ...rest }: MobileProps) {
7676
<HStack>
7777
<Avatar
7878
size={"sm"}
79-
src={`https://avatars.dicebear.com/api/jdenticon/${user?.id}.svg`}
79+
src={`https://api.dicebear.com/7.x/shapes/svg?seed=${user?.id}`}
8080
bg="transparent"
8181
/>
8282
<VStack

src/components/settings/UserSettings.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function UserSettings() {
7373
<Avatar
7474
boxSize={{ base: 24, md: 48 }}
7575
bg="transparent"
76-
src={`https://avatars.dicebear.com/api/jdenticon/${user?.id}.svg`}
76+
src={`https://api.dicebear.com/7.x/shapes/svg?seed=${user?.id}`}
7777
/>
7878
<VStack
7979
w={{ base: undefined, md: "full" }}

src/store/org.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const DEFAULT_ORG_LIST = {
2323
KAMITSUBAKI: -430,
2424
"774inc": -400,
2525
GuildCQ: -283,
26-
ReACT: -184,
26+
ReAcT: -184,
2727
};
2828

2929
const orgModel: OrgModel = {

0 commit comments

Comments
 (0)