Skip to content

Commit

Permalink
Fix typo in Alumni.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinzi-c committed Sep 23, 2024
1 parent c212be3 commit 9b7427c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/app/components/AlumniBoard/Alumni.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface AlumniProps {
avatar: string;
}

const Alumni: FC<ALumniProps> = ({ name, role, avatar, company }) => (
const Alumni: FC<AlumniProps> = ({ name, role, avatar, company }) => (
<Flex direction="column" align="center" py={10} px={10} className={styles.singleStudent}>
<Avatar src={avatar} alt={name} className={styles.avatar} />
<Box mt={10} px={0} className={styles.innerText}>
Expand Down

0 comments on commit 9b7427c

Please sign in to comment.