diff --git a/app/components/TextChain/TextChain.tsx b/app/components/TextChain/TextChain.tsx
index 55a9e72..a63b3aa 100644
--- a/app/components/TextChain/TextChain.tsx
+++ b/app/components/TextChain/TextChain.tsx
@@ -5,6 +5,7 @@ import { useState, useEffect } from "react";
interface TextChainProps {
text: string;
mt?: MantineSize;
+ withoutPaper?: boolean;
}
export function TextChain(props : TextChainProps) {
@@ -26,31 +27,41 @@ export function TextChain(props : TextChainProps) {
});
}, [text]);
+ const grid = (
+
+ {text.split(" ").map((v, i) => {
+ return (
+
+ {i + 1}.
+ {v}
+
+ );
+ })}
+
+ );
+
return (
+ !props.withoutPaper ? (
Your seed phrase:
-
- {text.split(" ").map((v, i) => {
- return (
-
- {i + 1}.
- {v}
-
- );
- })}
-
+ {grid}
+ ) : (
+
+ {grid}
+
+ )
)
}
\ No newline at end of file
diff --git a/app/views/Backup/Backup.tsx b/app/views/Backup/Backup.tsx
index 29a30cf..411aadf 100644
--- a/app/views/Backup/Backup.tsx
+++ b/app/views/Backup/Backup.tsx
@@ -5,7 +5,7 @@ import { SettingsInput } from "@/app/components/SettingsInput/SettingsInput";
import { TextChain } from "@/app/components/TextChain/TextChain";
import { decodeWithPassword } from "@/app/crypto/crypto";
import { useAccount } from "@/app/providers/AccountProvider/useAccount";
-import { Paper, Text } from "@mantine/core";
+import { Text } from "@mantine/core";
import { useState } from "react";
export function Backup() {
@@ -39,10 +39,8 @@ export function Backup() {
{show.trim() !== "" && (
<>
-
-
-
-
+
+
Please don't share your seed phrase! The administration will never ask you for it.
>