Skip to content

Commit

Permalink
feat(INJI-299): add missing imports and adjust buttons alignment
Browse files Browse the repository at this point in the history
Signed-off-by: Pooja Babusingh <[email protected]>
  • Loading branch information
PoojaBabusingh committed Oct 20, 2023
1 parent 3a8e2cc commit 4e9aa6a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions screens/Home/MyVcs/AddVcModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {OtpVerificationModal} from './OtpVerificationModal';
import {IdInputModal} from './IdInputModal';
import {useTranslation} from 'react-i18next';
import {GET_INDIVIDUAL_ID} from '../../../shared/constants';
import {Button, Column} from '../../../components/ui';

export const AddVcModal: React.FC<AddVcModalProps> = props => {
const {t} = useTranslation('AddVcModal');
Expand Down Expand Up @@ -51,21 +52,20 @@ export const AddVcModal: React.FC<AddVcModalProps> = props => {
<MessageOverlay
isVisible={controller.isDownloadCancelled}
title={t('confirmationDialog.title')}
message={t('confirmationDialog.message')}>
<Row>
message={t('confirmationDialog.message')}
customHeight={250}>
<Column>
<Button
fill
type="clear"
title={t('confirmationDialog.wait')}
onPress={controller.WAIT}
margin={[0, 8, 0, 0]}
margin={[0, 0, 8, 0]}
/>
<Button
fill
type="clear"
title={t('confirmationDialog.cancel')}
onPress={controller.CANCEL}
/>
</Row>
</Column>
</MessageOverlay>
</React.Fragment>
);
Expand Down

0 comments on commit 4e9aa6a

Please sign in to comment.