Skip to content

Commit

Permalink
Quick Linter Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sampoder committed Aug 10, 2023
1 parent e5421d6 commit d30319c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/bank/climate/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ const FilterPanel = ({ filter, mobile }) => {
const Filtering = ({ mobile, ...props }) => {
return (
<>
{Object.values(props).map(filter => (
<FilterPanel filter={filter} mobile={mobile} />
{Object.values(props).map((filter, i) => (
<FilterPanel key={`filter-${i}`} filter={filter} mobile={mobile} />
))}
</>
)
Expand Down

0 comments on commit d30319c

Please sign in to comment.