From bdfbc6b3a6050fa793d105b155557656bf545dce Mon Sep 17 00:00:00 2001 From: Hanage999 Date: Mon, 15 Jun 2026 19:31:16 +0900 Subject: [PATCH] Fix categorised custom emojis missing from the emoji picker (#39421) Signed-off-by: Hanage999 --- app/javascript/mastodon/features/emoji/picker.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/emoji/picker.ts b/app/javascript/mastodon/features/emoji/picker.ts index 474eb0d48a..9a49dd66ac 100644 --- a/app/javascript/mastodon/features/emoji/picker.ts +++ b/app/javascript/mastodon/features/emoji/picker.ts @@ -103,7 +103,9 @@ const selectPickerData = createAppSelector( categories: [ 'recent', 'custom', - ...Object.keys(categories).toSorted(), + ...Object.keys(categories) + .toSorted() + .map((category) => `custom-${category}`), ...defaultCategories, ] as CategoryName[], };