mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 09:06:23 +01:00
Use _types as key too
This commit is contained in:
parent
f02cd50d7b
commit
62201b0250
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ export default function GenericAccounts({ onClose = () => {} }) {
|
|||
<>
|
||||
<ul class="accounts-list">
|
||||
{accounts.map((account) => (
|
||||
<li key={account.id}>
|
||||
<li key={account.id + (account._types || '')}>
|
||||
{showReactions && account._types?.length > 0 && (
|
||||
<div class="reactions-block">
|
||||
{account._types.map((type) => (
|
||||
|
|
Loading…
Reference in a new issue