We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3feddd commit a62a108Copy full SHA for a62a108
src/autosuggest/autosuggest-option.tsx
@@ -108,15 +108,9 @@ const AutosuggestOption = (
108
ref: React.Ref<HTMLDivElement>
109
) => {
110
const baseProps = getBaseProps(rest);
111
-<<<<<<< dev-v3-philosr-refactor-4
112
- const useEntered = option.type === 'use-entered';
113
- const isParent = option.type === 'parent';
114
- const isChild = option.type === 'child';
115
-=======
116
const useEntered = option?.type === 'use-entered';
117
const isParent = option?.type === 'parent';
118
const isChild = option?.type === 'child';
119
->>>>>>> main
120
const { throughIndex, inGroupIndex, groupIndex } = getTestOptionIndexes(option) || {};
121
122
let optionContent;
0 commit comments