Skip to content

Commit

Permalink
feat: describe sentence in enrolment modal
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Dec 8, 2024
1 parent e6073ad commit 1adccf4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/EnrolmentModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ export const EnrolmentModal = ({ isOpen, onOpenChange }: ReadyModalProps) => {
size={isOnlyCourse ? 'xs' : '2xl'}
>
<ModalContent>
<ModalHeader>{t('calendar.end-actions.ready')}</ModalHeader>
<ModalHeader className="flex-col">
<div>{t('calendar.end-actions.ready')}</div>
<div className="text-xs font-normal">
Copy the numbers below and enter them on the enrollment page of
Access Adelaide.
</div>
</ModalHeader>
<ModalBody className={clsx(!isOnlyCourse && 'grid grid-cols-2')}>
{enrolledCourses.map((c) => (
<Card key={c.id}>
Expand Down

0 comments on commit 1adccf4

Please sign in to comment.