Skip to content

Commit 927412f

Browse files
committed
yarn lint-js --fix
1 parent e1025dd commit 927412f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

static/js/publisher/components/ComboBox/ComboBox.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,13 +238,15 @@ const ComboBox: FC<ComboBoxProps> = ({
238238
</div>
239239
<ul
240240
className={`p-combobox__options-panel ${comboBoxState.isOpen ? "active" : ""}`}
241-
{...getMenuProps()}>
241+
{...getMenuProps()}
242+
>
242243
{comboBoxState.isOpen &&
243244
comboBoxState.filteredOptions.map((item) => (
244245
<li
245246
{...getItemProps({ item })}
246247
key={item.value}
247-
className="p-combobox__option">
248+
className="p-combobox__option"
249+
>
248250
{item.label}
249251
</li>
250252
))}

0 commit comments

Comments
 (0)