diff --git a/components/Avatar.vue b/components/Avatar.vue index 23aae79..3684cad 100644 --- a/components/Avatar.vue +++ b/components/Avatar.vue @@ -23,7 +23,7 @@ let displayAvatar: string | null if ("username" in props.profile) { - // assume it's a UserRespone + // assume it's a UserResponse displayAvatar = props.profile.avatar if (!displayAvatar) { if (!isCanvasBlocked()) { diff --git a/components/Modal/ProfilePopup.vue b/components/Modal/ProfilePopup.vue index 07181be..8706263 100644 --- a/components/Modal/ProfilePopup.vue +++ b/components/Modal/ProfilePopup.vue @@ -48,7 +48,7 @@ {{ toDateString(joinDate) }}
- Friends Since
+ Friends since
{{ toDateString(friendsSince) }}
diff --git a/composables/profile.ts b/composables/profile.ts index 1fc4f24..2565f82 100644 --- a/composables/profile.ts +++ b/composables/profile.ts @@ -13,7 +13,7 @@ export const useProfile = () => { function getDisplayName (profile: UserResponse | GuildMemberResponse): string { if ("username" in profile) { - // assume it's a UserRespone + // assume it's a UserResponse if (profile.display_name) return profile.display_name return profile.username } else {