This commit is contained in:
Benny Joo
2024-11-25 14:07:55 -05:00
committed by GitHub
parent 62976a4c77
commit d1adfa3bf9
-1
View File
@@ -127,7 +127,6 @@ export const Meeting = ({ title, users = [], profile }: MeetingImageProps) => {
const avatars = attendees
.map((user) => {
if ("image" in user && user?.image) return user.image;
if ("username" in user && user?.username) return `${CAL_URL}/${user.username}/avatar.png`;
return null;
})
.filter(Boolean) as string[];