From 7aec850390c63174d45f9507e800f30ddbc96362 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sat, 7 Dec 2024 11:11:18 +0100 Subject: [PATCH] fix(client): :label: Add description type to Emoji --- client/types/emoji.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/types/emoji.ts b/client/types/emoji.ts index da82ac1..cab5ee4 100644 --- a/client/types/emoji.ts +++ b/client/types/emoji.ts @@ -4,6 +4,7 @@ export type Emoji = { static_url: string; url: string; visible_in_picker: boolean; - category?: string; global: boolean; + category?: string; + description?: string; };