diff --git a/src/features/ui/components/modals/nostr-signup-modal/steps/key-step.tsx b/src/features/ui/components/modals/nostr-signup-modal/steps/key-step.tsx index 9e203ced0..272992fc9 100644 --- a/src/features/ui/components/modals/nostr-signup-modal/steps/key-step.tsx +++ b/src/features/ui/components/modals/nostr-signup-modal/steps/key-step.tsx @@ -3,7 +3,7 @@ import { FormattedMessage } from 'react-intl'; import { openModal } from 'soapbox/actions/modals'; import EmojiGraphic from 'soapbox/components/emoji-graphic'; -import { Button, Stack, Modal } from 'soapbox/components/ui'; +import { Button, Stack, Modal, Text, Divider } from 'soapbox/components/ui'; import { useAppDispatch } from 'soapbox/hooks'; import NostrExtensionIndicator from '../../nostr-login-modal/components/nostr-extension-indicator'; @@ -23,9 +23,12 @@ const KeyStep: React.FC = ({ setStep, onClose }) => { }; return ( - } onClose={onClose}> - - + } width='sm' onClose={onClose}> + + + + + @@ -38,6 +41,13 @@ const KeyStep: React.FC = ({ setStep, onClose }) => { + + + + + + + );