Skip to content

Commit

Permalink
fix(profile): remove getAvatarOriginalSizeUrl method export
Browse files Browse the repository at this point in the history
  • Loading branch information
louisgrasset authored and karashiiro committed Aug 13, 2023
1 parent d140b03 commit 00d60c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export interface UserRaw {
}[];
}

export function getAvatarOriginalSizeUrl(avatarUrl: string | undefined) {
function getAvatarOriginalSizeUrl(avatarUrl: string | undefined) {
return avatarUrl ? avatarUrl.replace('_normal', '') : undefined;
}

Expand Down

0 comments on commit 00d60c1

Please sign in to comment.