fix: styles

This commit is contained in:
2025-07-22 14:04:26 +03:30
committed by Koosha Lahouti
parent 6d94a0d037
commit 9e471670d3
6 changed files with 167 additions and 15 deletions

View File

@@ -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}