Skip to content

Commit

Permalink
πŸ›
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeyens committed Mar 28, 2024
1 parent 572faf5 commit 4f30b58
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/indent-list/src/injectIndentListComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const injectIndentListComponent = (
KEY_LIST_STYLE_TYPE
);

const listOptions = listStyleTypes[listStyleType];
let listOptions = listStyleTypes[listStyleType];

let isOrdered = true;

Expand All @@ -48,6 +48,7 @@ export const injectIndentListComponent = (
if (ULIST_STYLE_TYPES.includes(listStyleType as any)) {
isOrdered = false;
}
listOptions = {} as any;
}

className = isOrdered
Expand Down

0 comments on commit 4f30b58

Please sign in to comment.