Merge branch '372-ui-bug-import-pop-up' into 'release'

fix: change to data import dialog

See merge request bloodyhealth/drip!625
This commit is contained in:
tintenfisch
2023-11-10 12:25:46 +00:00
@@ -65,14 +65,14 @@ export default function ImportData({ resetIsDeletingData, setIsLoading }) {
style: 'cancel', style: 'cancel',
onPress: () => {}, onPress: () => {},
}, },
{
text: t('dialog.replace'),
onPress: () => startImport(false),
},
{ {
text: t('dialog.delete'), text: t('dialog.delete'),
onPress: () => startImport(true), onPress: () => startImport(true),
}, },
{
text: t('dialog.replace'),
onPress: () => startImport(false),
},
]) ])
} }