Fix emoji picker not rendering when no custom emojis (#38885)

This commit is contained in:
Gomasy 2026-05-04 18:09:17 +09:00 committed by GitHub
parent 696aaa616b
commit 00c2089e81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,8 @@ export async function fetchCustomEmojiData() {
const { loadAllCustomEmoji } = await import('./database');
const emojisRaw = await loadAllCustomEmoji();
if (emojisRaw.length === 0) {
return [];
customEmojis = [];
return customEmojis;
}
const categories = new Set(['custom']);