diff --git a/frontends/web/src/locales/en/app.json b/frontends/web/src/locales/en/app.json index 33eea32164..44a4daa5b2 100644 --- a/frontends/web/src/locales/en/app.json +++ b/frontends/web/src/locales/en/app.json @@ -288,6 +288,7 @@ }, "stepInsertSD": { "insertSDCard": "Please insert a microSD card into your BitBox02 to continue.", + "insertSDCardToSeeBackups": "Please insert the microSD card into your BitBox02 to see your backups.", "insertSDcardTitle": "Insert microSD card" }, "stepPassword": { diff --git a/frontends/web/src/routes/device/bitbox02/sdcardcheck.tsx b/frontends/web/src/routes/device/bitbox02/sdcardcheck.tsx index 129f5cc7a0..76791c0ec3 100644 --- a/frontends/web/src/routes/device/bitbox02/sdcardcheck.tsx +++ b/frontends/web/src/routes/device/bitbox02/sdcardcheck.tsx @@ -17,8 +17,9 @@ import { ReactNode, useCallback, useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; import { checkSDCard } from '@/api/bitbox02'; -import { Dialog, DialogButtons } from '@/components/dialog/dialog'; import { Button } from '@/components/forms'; +import { PointToBitBox02 } from '@/components/icon'; +import { View, ViewButtons, ViewContent, ViewHeader } from '@/components/view/view'; import { BackButton } from '@/components/backbutton/backbutton'; import { HorizontallyCenteredSpinner } from '@/components/spinner/SpinnerAnimation'; @@ -44,25 +45,24 @@ const SDCardCheck = ({ deviceID, children }: TProps) => { return (
{!sdCardInserted ? ( - -
-
-
-

{t('backup.insert')}

-
-
-
- + + + {t('bitbox02Wizard.stepInsertSD.insertSDCardToSeeBackups')} + + + + + - + {t('button.back')} - -
+ + ) : children}
); diff --git a/frontends/web/src/routes/device/manage-backups/manage-backups.tsx b/frontends/web/src/routes/device/manage-backups/manage-backups.tsx index 444b47f978..1354080098 100644 --- a/frontends/web/src/routes/device/manage-backups/manage-backups.tsx +++ b/frontends/web/src/routes/device/manage-backups/manage-backups.tsx @@ -48,7 +48,6 @@ export const ManageBackups = ({ title={

{t('backup.title')}

} />
-

{t('backup.list')}

- - {t('button.back')} - - + <> +

{t('backup.list')}

+ + + {t('button.back')} + + + ); case 'bitbox02': return (