remove component=li from Divider in DefaultResultListItem as it gives a marker pseudo-element (bullet) to the divider

Signed-off-by: Emma Indal <emma.indahl@gmail.com>
This commit is contained in:
Emma Indal
2021-07-09 12:19:15 +02:00
committed by blam
parent da97e50580
commit 2a9cb61b7c
@@ -33,7 +33,7 @@ export const DefaultResultListItem = ({ result }: Props) => {
secondary={result.text}
/>
</ListItem>
<Divider component="li" />
<Divider />
</Link>
);
};