diff --git a/src/entities/applet/lib/alerts.ts b/src/entities/applet/lib/alerts.ts index 5d2c9f9f4..eaf2425bd 100644 --- a/src/entities/applet/lib/alerts.ts +++ b/src/entities/applet/lib/alerts.ts @@ -65,5 +65,5 @@ export function onFlowActivityContainsAllItemsHidden(entityName: string) { Alert.alert('', i18n.t('activity:flow_all_items_hidden', { entityName })); } export function onDataSharingConsentDetails() { - Alert.alert(i18n.t('data_sharing:dialog:body')); + Alert.alert('', i18n.t('data_sharing:dialog:body')); } diff --git a/src/entities/applet/ui/ConsentCheckBox.tsx b/src/entities/applet/ui/ConsentCheckBox.tsx index 29e75c1e2..4dc03f1d9 100644 --- a/src/entities/applet/ui/ConsentCheckBox.tsx +++ b/src/entities/applet/ui/ConsentCheckBox.tsx @@ -12,9 +12,8 @@ function ConsentCheckBox({ value, label, onChange, ...boxProps }: Props) { const changeValue = () => onChange(!value); return ( - + {label}