Skip to content

Commit

Permalink
Merge pull request #81 from UoaWDCC/Kinzi_FixFrontEndProd
Browse files Browse the repository at this point in the history
Kinzi fix front end prod
  • Loading branch information
GodYazza authored Sep 23, 2024
2 parents c212be3 + b6d69d3 commit 105b5fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions 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
1 change: 1 addition & 0 deletions web/src/app/components/AlumniBoard/AlumniFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ interface FilterProps {
filterFields: string[];
setFilterFields: (filterFields: string[]) => void;
color?: string;
useRoles: boolean;
}

const AlumniFilter: FC<FilterProps> = ({
Expand Down

0 comments on commit 105b5fe

Please sign in to comment.