🎨 Fix runtime errors and hover card

This commit is contained in:
Manuel Ruwe
2022-12-11 15:45:38 +01:00
parent 35d20965a3
commit 4026d0c102
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ export const IconSelector = ({ onChange }: IconSelectorProps) => {
<ScrollArea style={{ height: 250 }} type="always">
<Flex gap={4} wrap="wrap" pr={15}>
{slicedFilteredItems.map((item) => (
<ActionIcon onClick={() => onChange(item)} size={40} p={3}>
<ActionIcon key={item.url} onClick={() => onChange(item)} size={40} p={3}>
<img className={classes.icon} src={item.url} alt="" />
</ActionIcon>
))}