mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-07 19:55:46 -05:00
fix suggestions filtering key bug
This commit is contained in:
@@ -147,7 +147,9 @@ const PlusHomePage = ({ suggestions, statuses }: PlusHomePageProps) => {
|
||||
return true;
|
||||
};
|
||||
return (
|
||||
<Fragment key={suggestion.suggestedUser.id}>
|
||||
<Fragment
|
||||
key={suggestion.suggestedUser.id + "-" + suggestion.tier}
|
||||
>
|
||||
<Suggestion suggestion={suggestion} canSuggest={canSuggest()} />
|
||||
{i < suggestionsData.length - 1 && <Divider />}
|
||||
</Fragment>
|
||||
|
||||
Reference in New Issue
Block a user