From ebdb21d38fd95b6028d2d3f0e5599937ae2fc1bf Mon Sep 17 00:00:00 2001 From: Temmie Date: Mon, 4 Aug 2025 03:33:01 +0200 Subject: [PATCH] fix: typos --- components/Avatar.vue | 2 +- components/Modal/ProfilePopup.vue | 2 +- composables/profile.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 {