diff --git a/frontend/components/Setup/SetupRestore.tsx b/frontend/components/Setup/SetupRestore.tsx index 0a2867f6..02fbe86a 100644 --- a/frontend/components/Setup/SetupRestore.tsx +++ b/frontend/components/Setup/SetupRestore.tsx @@ -1,5 +1,5 @@ import { CloseOutlined } from '@ant-design/icons'; -import { Button, Flex, Typography } from 'antd'; +import { Button, Col, Flex, Input, Row, Typography } from 'antd'; import { memo } from 'react'; import { CardFlex } from '@/components/styled/CardFlex'; @@ -61,6 +61,7 @@ export const SetupRestoreMain = () => { ); }; +const SEED_PHRASE_WORDS = 12; export const SetupRestoreViaSeed = () => { return ( { } gap={10} - > + > + + To restore access to your Operate account, enter the seed phrase you + received when setting up your account. + + + + + + + ); };