Skip to content

Commit 39d0e2c

Browse files
committed
fix: regression in template dropdown showing creator avatar and pin onHover
1 parent 3b85ae5 commit 39d0e2c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/imagekit-editor-dev/src/components/header/TemplatesDropdown.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,13 +384,15 @@ export function TemplatesDropdown({
384384
</Flex>
385385
) : (
386386
filtered.map((record) => (
387+
// biome-ignore lint/a11y/useSemanticElements: Not necessary for this component
387388
<Flex
388389
key={record.id}
389390
px="4"
390391
py="2"
391392
cursor="pointer"
392393
alignItems="center"
393394
gap="3"
395+
role="group"
394396
_hover={{ bg: "editorGray.100" }}
395397
onClick={() => handleSelect(record)}
396398
transition="background-color 0.15s"

0 commit comments

Comments
 (0)