diff --git a/custom/fitness-demo/components/Call/ChatAside.js b/custom/fitness-demo/components/Call/ChatAside.js index e4aed31..d2caa5f 100644 --- a/custom/fitness-demo/components/Call/ChatAside.js +++ b/custom/fitness-demo/components/Call/ChatAside.js @@ -18,6 +18,7 @@ export const ChatAside = () => { const playMessageSound = useMessageSound(); const [showEmojis, setShowEmojis] = useState(false); + const emojis = ['😍', '😭', '😂', '👋', '🙏']; const chatWindowRef = useRef(); useEffect(() => { @@ -59,55 +60,16 @@ export const ChatAside = () => { {showEmojis && (
- - - - - - - + {emojis.map(emoji => ( + + ))}
)}