Skip to content

Commit

Permalink
Merge branch 'release-1.0.0' of github.com:tekdi/teachers-app into co…
Browse files Browse the repository at this point in the history
…ursePlaner
  • Loading branch information
shreyas1434shinde committed Aug 2, 2024
2 parents 44a2f00 + c14b112 commit 55503d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/learner/[userId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const LearnerProfile: React.FC = () => {
} else if (item?.type === 'checkbox') {
return String(field?.value).split(',');
} else {
return field?.value;
return field?.value.toLowerCase();
}
} else {
if (item?.type === 'numeric') {
Expand All @@ -224,7 +224,7 @@ const LearnerProfile: React.FC = () => {
console.log(true)
return field?.value?.toLowerCase();
}
return field?.value;
return field?.value.toLowerCase();;
}
}
};
Expand Down

0 comments on commit 55503d9

Please sign in to comment.