Add a little Fragment here

This commit is contained in:
Lim Chee Aun 2023-10-31 22:22:57 +08:00
parent f3dcd9f4ee
commit bc0197a5f1

View file

@ -1,3 +1,4 @@
import { Fragment } from 'preact';
import { memo } from 'preact/compat'; import { memo } from 'preact/compat';
import shortenNumber from '../utils/shorten-number'; import shortenNumber from '../utils/shorten-number';
@ -221,9 +222,10 @@ function Notification({ notification, instance, isStatic }) {
)} )}
{_accounts?.length > 1 && ( {_accounts?.length > 1 && (
<p class="avatars-stack"> <p class="avatars-stack">
{_accounts.slice(0, AVATARS_LIMIT).map((account, i) => ( {_accounts.slice(0, AVATARS_LIMIT).map((account) => (
<> <Fragment key={account.id}>
<a <a
key={account.id}
href={account.url} href={account.url}
rel="noopener noreferrer" rel="noopener noreferrer"
class="account-avatar-stack" class="account-avatar-stack"
@ -261,7 +263,7 @@ function Notification({ notification, instance, isStatic }) {
</div> </div>
)} )}
</a>{' '} </a>{' '}
</> </Fragment>
))} ))}
<button <button
type="button" type="button"