From 8dbab14c2ecaca6d9696bf56176190b6ef1e0b32 Mon Sep 17 00:00:00 2001 From: Temmie Date: Mon, 11 Aug 2025 22:23:20 +0200 Subject: [PATCH] chore: add comment --- components/DefaultIcon.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/DefaultIcon.vue b/components/DefaultIcon.vue index 6fc6891..c374ab9 100644 --- a/components/DefaultIcon.vue +++ b/components/DefaultIcon.vue @@ -17,6 +17,7 @@ const props = defineProps<{ }>(); let previewName = ""; +// include the entire name if it's 3 chars or less, use the first char of the first 3 words otherwise if (props.name.length > 3) { let guildName: string[] = props.name.split(' ') for (let i = 0; i < 3; i ++) {