Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: [IOPID-1227] Fix bottomsheet error 1002 #5396

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion locales/en/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ authentication:
description1_2: Otherwise, you can access it in the app by logging in with the
description1_3: maximum level of safety.
description1_4: This type of authentication requires a username, password, and physical device, such as CIE.
title2: How to unlock IO access
title2: Do you want to unlock access to IO?
listitem1: Make sure you have secured your digital identity by changing your login credentials with your Identity Provider.
listitem2_1: Access IO from the web, using your SPID or CIE credentials.
listitem2_2: Go to the site
Expand Down
4 changes: 2 additions & 2 deletions locales/it/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -741,12 +741,12 @@ authentication:
description1_2: In alternativa, è possibile entrare in app utilizzando un accesso con il
description1_3: livello massimo di sicurezza.
description1_4: Questo tipo di autenticazione richiede un nome utente, una password e un supporto fisico, come ad esempio la CIE.
title2: Come sbloccare l’accesso a IO
title2: Vuoi sbloccare l’accesso a IO?
listitem1: Assicurati di aver messo in sicurezza la tua identità digitale, modificando le credenziali di accesso con il tuo Identity Provider.
listitem2_1: Accedi a IO dal web, utilizzando le tue credenziali SPID o CIE.
listitem2_2: Vai al sito
listitem3_1: Vai alla sezione
listitem3_2: Sblocca accesso a IO
listitem3_2: Sblocca l'accesso a IO
listitem3_3: e segui i passaggi indicati. Quando richiesto inserisci il
listitem3_4: codice di ripristino
listitem3_5: per confermare l’operazione.
Expand Down
7 changes: 4 additions & 3 deletions ts/screens/onboarding/UnlockAccessScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
FeatureInfo,
GradientScrollView,
H3,
H6,
IOColors,
IOStyles,
LabelSmall,
Expand Down Expand Up @@ -38,22 +39,22 @@ const UnlockAccessScreen = (props: Props) => {
{I18n.t("authentication.unlockmodal.description1_4")}{" "}
</Body>
<VSpacer size={24} />
<H3 weight="SemiBold">{I18n.t("authentication.unlockmodal.title2")}</H3>
<H6 weight="SemiBold">{I18n.t("authentication.unlockmodal.title2")}</H6>
<VSpacer size={24} />
<FeatureInfo
iconName="security"
body={I18n.t("authentication.unlockmodal.listitem1")}
/>
<VSpacer size={16} />
<FeatureInfo
iconName="security"
iconName="login"
body={I18n.t("authentication.unlockmodal.listitem2_1")}
actionLabel={I18n.t("authentication.unlockmodal.listitem2_2")}
actionOnPress={() => openWebUrl("https://ioapp.it/")}
/>
<VSpacer size={16} />
<FeatureInfo
iconName="security"
iconName="locked"
body={
<LabelSmall weight="Regular" color="grey-700">
{I18n.t("authentication.unlockmodal.listitem3_1")}{" "}
Expand Down