-
-
-
- {i18n.t("modals.onboarding.secure_your_funds")}
-
-
- {i18n.t("modals.onboarding.make_backup")}
-
-
-
-
- {i18n.t("settings.backup.title")}
-
-
+
+
+ {i18n.t("modals.onboarding.secure_your_funds")}
+
+
+
+
+ {i18n.t("settings.backup.title")}
+
-
>
diff --git a/src/i18n/en/translations.ts b/src/i18n/en/translations.ts
index 612fcc8..cddc11e 100644
--- a/src/i18n/en/translations.ts
+++ b/src/i18n/en/translations.ts
@@ -495,9 +495,7 @@ export default {
restore_from_backup:
"If you've used Mutiny before you can restore from a backup. Otherwise you can skip this and enjoy your new wallet!",
not_available: "We don't do that yet",
- secure_your_funds: "Secure your funds",
- make_backup:
- "You have money stored in this browser. Let's make sure you have a backup."
+ secure_your_funds: "Secure your funds"
},
beta_warning: {
title: "Warning: beta software",
diff --git a/src/i18n/ko/translations.ts b/src/i18n/ko/translations.ts
index 7542016..b925a47 100644
--- a/src/i18n/ko/translations.ts
+++ b/src/i18n/ko/translations.ts
@@ -481,9 +481,7 @@ export default {
restore_from_backup:
"이미 Mutiny를 사용한 적이 있으시다면 백업에서 복원할 수 있습니다. 그렇지 않다면 이 단계를 건너뛰고 새로운 지갑을 즐기실 수 있습니다!",
not_available: "아직 이 기능은 지원하지 않습니다",
- secure_your_funds: "자금을 안전하게 보호하세요",
- make_backup:
- "이 브라우저에 자금이 저장되어 있습니다. 백업이 되어 있는지 확인해 봅시다."
+ secure_your_funds: "자금을 안전하게 보호하세요"
},
beta_warning: {
title: "경고: 베타 버전 소프트웨어",
diff --git a/src/routes/settings/Encrypt.tsx b/src/routes/settings/Encrypt.tsx
index b2a8820..ba439e7 100644
--- a/src/routes/settings/Encrypt.tsx
+++ b/src/routes/settings/Encrypt.tsx
@@ -150,7 +150,7 @@ export default function Encrypt() {
-
+
{i18n.t("settings.encrypt.skip")}
diff --git a/src/state/megaStore.tsx b/src/state/megaStore.tsx
index 9a124d5..99db5ac 100644
--- a/src/state/megaStore.tsx
+++ b/src/state/megaStore.tsx
@@ -43,7 +43,6 @@ export type MegaStore = [
last_sync?: number;
price: number;
has_backed_up: boolean;
- dismissed_restore_prompt: boolean;
wallet_loading: boolean;
setup_error?: Error;
is_pwa: boolean;
@@ -59,7 +58,6 @@ export type MegaStore = [
deleteMutinyWallet(): Promise;
setScanResult(scan_result: ParsedParams | undefined): void;
sync(): Promise;
- dismissRestorePrompt(): void;
setHasBackedUp(): void;
listTags(): Promise;
checkBrowserCompat(): Promise;
@@ -77,8 +75,6 @@ export const Provider: ParentComponent = (props) => {
balance: undefined as MutinyBalance | undefined,
last_sync: undefined as number | undefined,
is_syncing: false,
- dismissed_restore_prompt:
- localStorage.getItem("dismissed_restore_prompt") === "true",
wallet_loading: true,
setup_error: undefined as Error | undefined,
is_pwa: window.matchMedia("(display-mode: standalone)").matches,
@@ -234,10 +230,6 @@ export const Provider: ParentComponent = (props) => {
localStorage.setItem("has_backed_up", "true");
setState({ has_backed_up: true });
},
- dismissRestorePrompt() {
- localStorage.setItem("dismissed_restore_prompt", "true");
- setState({ dismissed_restore_prompt: true });
- },
async listTags(): Promise {
try {
return state.mutiny_wallet?.get_tag_items() as MutinyTagItem[];