Skip to content

Commit

Permalink
fix: fix labels errors (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
1M4nt0 authored Nov 8, 2023
1 parent aaaed5d commit 375829e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const BaseCredentialsTransferForm: React.FC<
<Box padding={8} borderRadius="xl" bg={'white'} boxShadow={'md'}>
<Stack spacing={8}>
<FormControl display="flex" alignItems="center">
<FormLabel mb="0">Multi transfer?</FormLabel>
<FormLabel mb="0">Multi enroll?</FormLabel>
<Switch isDisabled={isLoading} onChange={handleMultiEnrollChange} />
</FormControl>
{multiEnroll ? (
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/UserRow/StudentsCredentialsRowList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const StudentsCredentialsRowList: React.FC<
<Box>
<AlertTitle>Nothing to show.</AlertTitle>
<AlertDescription>
There are no teachers enrolled in this course
There are no students enrolled in this course.
</AlertDescription>
</Box>
</Alert>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/UserRow/TeachersCredentialsRowList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const TeachersCredentialsRowList: React.FC<TeachersRowListProps> = ({
<Box>
<AlertTitle>Nothing to show.</AlertTitle>
<AlertDescription>
There are no teachers enrolled in this course
There are no teachers enrolled in this course.
</AlertDescription>
</Box>
</Alert>
Expand Down

0 comments on commit 375829e

Please sign in to comment.