Skip to content

Commit

Permalink
add key to list el
Browse files Browse the repository at this point in the history
  • Loading branch information
luacmartins committed Aug 14, 2024
1 parent 298ea3f commit f9e6f5f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Search/SearchStatusBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,10 @@ function SearchStatusBar({type, status}: SearchStatusBarProps) {
const isActive = status === item.key;

return (
<Hoverable>
<Hoverable key={item.key}>
{(isHovered) => (
<View>
<Button
key={item.key}
text={translate(item.text)}
onPress={onPress}
icon={item.icon}
Expand Down

0 comments on commit f9e6f5f

Please sign in to comment.