diff --git a/src/components/SelectionList/Search/ActionCell.tsx b/src/components/SelectionList/Search/ActionCell.tsx index 4c6acb9d7bd8..03f5531fe70c 100644 --- a/src/components/SelectionList/Search/ActionCell.tsx +++ b/src/components/SelectionList/Search/ActionCell.tsx @@ -12,9 +12,10 @@ import variables from '@styles/variables'; type ActionCellProps = { onButtonPress: () => void; action: string; + isLargeScreenWidth?: boolean; }; -function ActionCell({onButtonPress, action}: ActionCellProps) { +function ActionCell({onButtonPress, action, isLargeScreenWidth = true}: ActionCellProps) { const {translate} = useLocalize(); const styles = useThemeStyles(); const theme = useTheme(); @@ -26,7 +27,7 @@ function ActionCell({onButtonPress, action}: ActionCellProps) {