Additional Genders
Deploy / deploy-dev (push) Successful in 3m17s
Deploy / deploy-prod (push) Has been skipped

This commit is contained in:
blaisadmin
2026-06-17 21:59:09 -04:00
parent 1140be8f32
commit 56068e02a3
6 changed files with 242 additions and 62 deletions
+8 -2
View File
@@ -61,11 +61,17 @@ const formatWeight = (value: string | number | null) => {
};
const genderLabel = (value: string) => {
if (value === 'female_dna') {
return 'Female (DNA confirmed)';
}
if (value === 'male_dna') {
return 'Male (DNA confirmed)';
}
if (value === 'female') {
return 'Female';
return 'Female (assumed)';
}
if (value === 'male') {
return 'Male';
return 'Male (assumed)';
}
return 'Unknown';
};