Skip to content

Commit

Permalink
Merge pull request #413 from Aar-if/modern
Browse files Browse the repository at this point in the history
Issue #000 Bug:  Course Planner Fixes and improvements
  • Loading branch information
itsvick authored Nov 23, 2024
2 parents 429f695 + d5fc32f commit 9e09b91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/ManageCentersModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import Typography from '@mui/material/Typography';
import { useTheme } from '@mui/material/styles';
import { useTranslation } from 'next-i18next';
import reassignLearnerStore from '@/store/reassignLearnerStore';
import { toPascalCase } from '@/utils/Helper';

interface ManageUsersModalProps {
open: boolean;
Expand Down Expand Up @@ -185,7 +186,7 @@ const ManageCentersModal: React.FC<ManageUsersModalProps> = ({
pb: '20px',
}}
>
{center?.name}
{toPascalCase(center?.name)}
</Box>
<Box>
{isForLearner ? (
Expand Down

0 comments on commit 9e09b91

Please sign in to comment.