From 4390cf8909a35675fe80fc963a95020147f36353 Mon Sep 17 00:00:00 2001 From: Manuel Date: Wed, 14 Aug 2024 10:17:13 +0200 Subject: [PATCH] fix(components): remove list-style-type from listbox options component --- src/components/form-field/listbox/listbox-options.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/form-field/listbox/listbox-options.tsx b/src/components/form-field/listbox/listbox-options.tsx index d033e24a..6495e9a3 100644 --- a/src/components/form-field/listbox/listbox-options.tsx +++ b/src/components/form-field/listbox/listbox-options.tsx @@ -7,7 +7,7 @@ export interface ListboxOptionsProps { export const ListboxOptions = ({ children }: ListboxOptionsProps) => { return ( - + {children} );