Skip to content

Commit 9cf533e

Browse files
committed
refactor: resize identicon
1 parent 8775b37 commit 9cf533e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/ManageProfileEdit.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const isDisabled = computed(() => {
116116
117117
const identicon = computed(() => {
118118
const {avatarHash} = props;
119-
return `https://api.gravatar.com/avatar/${avatarHash}?d=identicon`;
119+
return `https://api.gravatar.com/avatar/${avatarHash}?d=identicon&s=200`;
120120
});
121121
122122
const onClickUpdateEmail = () => {

src/components/ManageProfileShow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const isShowPasskeyAdd = computed(() => {
131131
132132
const identicon = computed(() => {
133133
const {avatar_hash: avatarHash} = myProfile;
134-
return `https://api.gravatar.com/avatar/${avatarHash}?d=identicon`;
134+
return `https://api.gravatar.com/avatar/${avatarHash}?d=identicon&s=200`;
135135
});
136136
137137
const onClickLogout = () => {

0 commit comments

Comments
 (0)