mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-02-17 14:37:18 +00:00
remove useMemo
from hasReactions
(#338)
This commit is contained in:
parent
8bebe944e7
commit
591a9c61bd
@ -1,4 +1,4 @@
|
||||
import React, { useMemo, useState } from 'react'
|
||||
import React, { useState } from 'react'
|
||||
|
||||
import {
|
||||
emojis,
|
||||
@ -23,9 +23,9 @@ export const MessageReactions = (props: Props) => {
|
||||
|
||||
const [open, setOpen] = useState(false)
|
||||
|
||||
const hasReaction = useMemo(() => {
|
||||
return Object.values(reactions).some(value => value.size > 0)
|
||||
}, [reactions])
|
||||
const hasReaction = Object.values<Set<string>>(reactions).some(
|
||||
value => value.size > 0
|
||||
)
|
||||
|
||||
if (hasReaction === false) {
|
||||
return null
|
||||
|
Loading…
x
Reference in New Issue
Block a user