mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-23 22:14:42 +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">
|
<ul class="accounts-list">
|
||||||
{accounts.map((account) => (
|
{accounts.map((account) => (
|
||||||
<li key={account.id}>
|
<li key={account.id + (account._types || '')}>
|
||||||
{showReactions && account._types?.length > 0 && (
|
{showReactions && account._types?.length > 0 && (
|
||||||
<div class="reactions-block">
|
<div class="reactions-block">
|
||||||
{account._types.map((type) => (
|
{account._types.map((type) => (
|
||||||
|
|
Loading…
Add table
Reference in a new issue