File tree 1 file changed +1
-2
lines changed
static/app/components/core/compactSelect 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import {useFocus, usePress} from '@react-aria/interactions';
3
3
import { mergeProps } from '@react-aria/utils' ;
4
4
import { VisuallyHidden } from '@react-aria/visually-hidden' ;
5
5
import type { ListState } from '@react-stately/list' ;
6
- import type { SelectionManager } from '@react-stately/selection' ;
7
6
import type { Node , Selection } from '@react-types/shared' ;
8
7
9
8
import { t } from 'sentry/locale' ;
@@ -186,7 +185,7 @@ export function getHiddenOptions<Value extends SelectKey>(
186
185
*/
187
186
function toggleOptions < Value extends SelectKey > (
188
187
optionKeys : Value [ ] ,
189
- selectionManager : SelectionManager
188
+ selectionManager : ListState < any > [ 'selectionManager' ]
190
189
) {
191
190
const { selectedKeys} = selectionManager ;
192
191
const newSelectedKeys = new Set ( selectedKeys ) ;
You can’t perform that action at this time.
0 commit comments