Fix browser console errors
This commit is contained in:
parent
9c027b803c
commit
595b02e689
1 changed files with 4 additions and 4 deletions
|
@ -86,10 +86,10 @@ class EmojiReactions extends ImmutablePureComponent {
|
|||
emptyMessage={emptyMessage}
|
||||
bindToDocument={!multiColumn}
|
||||
>
|
||||
{Object.keys(groups).map((key, index) =>(
|
||||
<AccountContainer key={index} id={key} withNote={false}>
|
||||
<div style={ { 'max-width': '100px' } }>
|
||||
{groups[key].map((value) => <EmojiView name={value.name} url={value.url} staticUrl={value.static_url} />)}
|
||||
{Object.keys(groups).map((key) =>(
|
||||
<AccountContainer key={key} id={key} withNote={false}>
|
||||
<div style={ { 'maxWidth': '100px' } }>
|
||||
{groups[key].map((value, index2) => <EmojiView key={index2} name={value.name} url={value.url} staticUrl={value.static_url} />)}
|
||||
</div>
|
||||
</AccountContainer>
|
||||
))}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue