fix: styles
This commit is contained in:
@@ -9,6 +9,7 @@ import { SubmitSection } from './SubmitSection';
|
||||
export function UserCompletionForm() {
|
||||
const { t } = useTranslation('completionForm');
|
||||
const [sex, setSex] = useState('');
|
||||
const [country, setCountry] = useState('');
|
||||
const [showPasswordSection, setShowPasswordSection] = useState(false);
|
||||
const [password, setPassword] = useState('');
|
||||
const [confirmPassword, setConfirmPassword] = useState('');
|
||||
@@ -141,7 +142,12 @@ export function UserCompletionForm() {
|
||||
</Typography>
|
||||
</Box>
|
||||
|
||||
<PersonalInfoFields sex={sex} setSex={setSex} />
|
||||
<PersonalInfoFields
|
||||
sex={sex}
|
||||
setSex={setSex}
|
||||
country={country}
|
||||
setCountry={setCountry}
|
||||
/>
|
||||
|
||||
<PasswordSection
|
||||
showPasswordSection={showPasswordSection}
|
||||
|
||||
Reference in New Issue
Block a user