File tree Expand file tree Collapse file tree
src/pages/workspace/duplicate Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import HeaderWithBackButton from '@components/HeaderWithBackButton';
66import { PressableWithFeedback } from '@components/Pressable' ;
77import SelectionList from '@components/SelectionList' ;
88import MultiSelectListItem from '@components/SelectionList/ListItem/MultiSelectListItem' ;
9- import type { ListItem } from '@components/SelectionList/types' ;
9+ import type { ConfirmButtonOptions , ListItem } from '@components/SelectionList/types' ;
1010import Text from '@components/Text' ;
1111import useLocalize from '@hooks/useLocalize' ;
1212import useOnyx from '@hooks/useOnyx' ;
@@ -307,7 +307,7 @@ function WorkspaceDuplicateSelectFeaturesForm({policyID}: WorkspaceDuplicateForm
307307
308308 const isSelectAllChecked = selectedItems . length > 0 && selectedItems . length === items . length ;
309309
310- const confirmButtonOptions = useMemo (
310+ const confirmButtonOptions : ConfirmButtonOptions < ListItem > = useMemo (
311311 ( ) => ( {
312312 showButton : true ,
313313 text : translate ( 'common.continue' ) ,
You can’t perform that action at this time.
0 commit comments