Skip to content

Commit a2be862

Browse files
fix(js): correct panel class name
1 parent 7d19396 commit a2be862

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/autocomplete-js/src/autocomplete.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ export function autocomplete<TItem>({
129129
}
130130

131131
if (state.status === 'stalled') {
132-
panel.classList.add('aa-panel--stalled');
132+
panel.classList.add('aa-Panel--stalled');
133133
} else {
134-
panel.classList.remove('aa-panel--stalled');
134+
panel.classList.remove('aa-Panel--stalled');
135135
}
136136

137137
const sections = state.collections.map((collection) => {

0 commit comments

Comments
 (0)