From c16b9a9cec94f24c7746cba8d70723db927a809f Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Fri, 29 Nov 2024 21:47:53 +0100 Subject: [PATCH] fix(client): :alien: Add global field to emojis --- client/types/emoji.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/types/emoji.ts b/client/types/emoji.ts index 53c719d..da82ac1 100644 --- a/client/types/emoji.ts +++ b/client/types/emoji.ts @@ -5,4 +5,5 @@ export type Emoji = { url: string; visible_in_picker: boolean; category?: string; + global: boolean; };