From bd728df79bc45f44b39cf3309e13a46704683d51 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 23 Feb 2023 11:36:07 +0800 Subject: [PATCH] Fix undefined customEmojis --- src/components/compose.jsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/components/compose.jsx b/src/components/compose.jsx index 70393ef4..aea4d0da 100644 --- a/src/components/compose.jsx +++ b/src/components/compose.jsx @@ -141,20 +141,6 @@ function Compose({ const prefs = store.account.get('preferences') || {}; - const customEmojis = useRef(); - useEffect(() => { - (async () => { - try { - const emojis = await masto.v1.customEmojis.list(); - console.log({ emojis }); - customEmojis.current = emojis; - } catch (e) { - // silent fail - console.error(e); - } - })(); - }, []); - const oninputTextarea = () => { if (!textareaRef.current) return; textareaRef.current.dispatchEvent(new Event('input')); @@ -1057,6 +1043,20 @@ const Textarea = forwardRef((props, ref) => { const snapStates = useSnapshot(states); const charCount = snapStates.composerCharacterCount; + const customEmojis = useRef(); + useEffect(() => { + (async () => { + try { + const emojis = await masto.v1.customEmojis.list(); + console.log({ emojis }); + customEmojis.current = emojis; + } catch (e) { + // silent fail + console.error(e); + } + })(); + }, []); + const textExpanderRef = useRef(); const textExpanderTextRef = useRef(''); useEffect(() => {