mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-03-02 03:50:40 +00:00
fix: add key to validator list item
This commit is contained in:
parent
69e38aceec
commit
638063967a
@ -51,7 +51,7 @@ const ValidatorsList = () => {
|
||||
<SearchValidatorsInput searchValue={searchValue} changeSearchValue={changeSearchValue} />
|
||||
<YStack space={'$1'} mt={'16px'}>
|
||||
{filteredValidators.map(validator => (
|
||||
<ValidatorListItem {...validator} />
|
||||
<ValidatorListItem key={validator.name} {...validator} />
|
||||
))}
|
||||
{filteredValidators.length === 0 && (
|
||||
<Text size={13} weight={'semibold'}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user