[Glitch] Fix categorised custom emojis missing from the emoji picker

Port b4be90f9ea3e29e166b4fb0d0e0cc6b32dbf908b to glitch-soc

Signed-off-by: Hanage999 <hanage999@crazynewworld.net>
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Hanage999 2026-06-15 19:31:16 +09:00 committed by Claire
parent 149b5b7989
commit 57246a0539

View File

@ -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[],
};