File tree Expand file tree Collapse file tree
src/pages/workspace/rules/SpendRules Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import BlockingView from '@components/BlockingViews/BlockingView';
44import FormAlertWithSubmitButton from '@components/FormAlertWithSubmitButton' ;
55import HeaderWithBackButton from '@components/HeaderWithBackButton' ;
66import ScreenWrapper from '@components/ScreenWrapper' ;
7+ import ScrollView from '@components/ScrollView' ;
78import SelectionList from '@components/SelectionList' ;
89import MultiSelectListItem from '@components/SelectionList/ListItem/MultiSelectListItem' ;
910import type { ListItem } from '@components/SelectionList/types' ;
@@ -125,12 +126,14 @@ function SpendRuleCategoryPage({route}: SpendRuleCategoryPageProps) {
125126 shouldUpdateFocusedIndex
126127 shouldPreventDefaultFocusOnSelectRow = { ! canUseTouchScreen ( ) }
127128 listEmptyContent = {
128- < BlockingView
129- icon = { illustrations . Telescope }
130- iconWidth = { variables . emptyListIconWidth }
131- iconHeight = { variables . emptyListIconHeight }
132- title = { translate ( 'common.noResultsFound' ) }
133- />
129+ < ScrollView contentContainerStyle = { [ styles . flexGrow1 ] } >
130+ < BlockingView
131+ icon = { illustrations . Telescope }
132+ iconWidth = { variables . emptyListIconWidth }
133+ iconHeight = { variables . emptyListIconHeight }
134+ title = { translate ( 'common.noResultsFound' ) }
135+ />
136+ </ ScrollView >
134137 }
135138 footerContent = {
136139 < FormAlertWithSubmitButton
You can’t perform that action at this time.
0 commit comments