Fix listUserChannelsForSelect

pull/4666/head
Chocobozzz 2022-02-28 13:44:37 +01:00
parent a282e4d8a0
commit e66d0892b1
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ function listUserChannelsForSelect (authService: AuthService) {
id: c.id,
label: c.displayName,
support: c.support,
avatarPath: minBy(c.avatars, 'width')[0]?.path
avatarPath: minBy(c.avatars, 'width')?.[0]?.path
}) as SelectChannelItem)
})
)