Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
fix(hooks-web): fix duplicated key in <CurrentRefinements> (#3513)
Browse files Browse the repository at this point in the history
  • Loading branch information
francoischalifour committed Jun 13, 2022
1 parent 6807232 commit fc94d80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export function CurrentRefinements({
>
{items.map((item) => (
<li
key={item.label}
key={[item.indexName, item.label].join('/')}
className={cx('ais-CurrentRefinements-item', classNames.item)}
>
<span
Expand Down

0 comments on commit fc94d80

Please sign in to comment.