fix(web): add email channel icon (#158)

Email is a supported channel (bindings, providers, outbox) but had no icon
and fell back to the generic comment icon. Use FontAwesome envelope.

Made-with: Cursor
This commit is contained in:
RoomWithOutRoof
2026-03-02 15:08:49 +08:00
committed by GitHub
parent 802dfd995f
commit 874ca5fac7
+1
View File
@@ -15,6 +15,7 @@ const CHANNEL_ICONS: Record<string, [string, string]> = {
web: ['fas', 'globe'],
slack: ['fab', 'slack'],
discord: ['fab', 'discord'],
email: ['fas', 'envelope'],
}
const DEFAULT_ICON: [string, string] = ['far', 'comment']