Compare commits

...

3 Commits

Author SHA1 Message Date
Mehdi104797
4462c62e6c . 2025-03-16 13:55:53 +03:30
Mehdi104797
6299d5ec81 . 2025-03-16 12:45:50 +03:30
Mehdi104797
54fe65d31a . 2025-03-15 13:45:21 +03:30
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 2a5f878608e9cc9e508ab4de70337c2673344596 Subproject commit be90244a87e87eb66759bd10fabf5e881998b055

View File

@ -362,9 +362,9 @@ export const getGroupAvatar = async (user = undefined) => {
const initials = nameArray[0].charAt(0); const initials = nameArray[0].charAt(0);
return generateAvatarFromChars(initials); return generateAvatarFromChars(initials);
} }
} } else return (await import("~/assets/common/img/default.svg")).default;
} }
} } else return (await import("~/assets/common/img/default.svg")).default;
} catch (err) { } catch (err) {
return (await import("~/assets/common/img/default.svg")).default; return (await import("~/assets/common/img/default.svg")).default;
} }