diff options
Diffstat (limited to 'web_src/js/features/emoji.js')
-rw-r--r-- | web_src/js/features/emoji.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/features/emoji.js b/web_src/js/features/emoji.js index 51d8801dc8..0da61c4d56 100644 --- a/web_src/js/features/emoji.js +++ b/web_src/js/features/emoji.js @@ -15,7 +15,7 @@ export const emojiKeys = Object.keys(tempMap).sort((a, b) => { return a.localeCompare(b); }); -export const emojiMap = {}; +const emojiMap = {}; for (const key of emojiKeys) { emojiMap[key] = tempMap[key]; } |