Skip to content

Commit

Permalink
Fixed offline view on country selection page
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham1206agra committed Jan 12, 2025
1 parent dff31f4 commit cef7c93
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, {useCallback, useMemo, useState} from 'react';
import {View} from 'react-native';
import FullPageOfflineBlockingView from '@components/BlockingViews/FullPageOfflineBlockingView';
import SelectionList from '@components/SelectionList';
import RadioListItem from '@components/SelectionList/RadioListItem';
import useDebouncedState from '@hooks/useDebouncedState';
Expand Down Expand Up @@ -62,7 +63,7 @@ function CountrySelection({isEditing, onNext, formValues, resetScreenIndex}: Cus
const headerMessage = debouncedSearchValue.trim() && !searchResults.length ? translate('common.noResultsFound') : '';

return (
<>
<FullPageOfflineBlockingView>
<View style={styles.ph5}>
<Text style={[styles.textHeadlineLineHeightXXL, styles.mb6]}>{translate('addPersonalBankAccount.countrySelectionStepHeader')}</Text>
</View>
Expand All @@ -84,7 +85,7 @@ function CountrySelection({isEditing, onNext, formValues, resetScreenIndex}: Cus
isConfirmButtonDisabled={isOffline}
shouldUpdateFocusedIndex
/>
</>
</FullPageOfflineBlockingView>
);
}

Expand Down

0 comments on commit cef7c93

Please sign in to comment.