Skip to content

Commit

Permalink
update to show alumni always
Browse files Browse the repository at this point in the history
  • Loading branch information
kw-lee committed Jan 10, 2024
1 parent fcc385f commit b18835a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/gatsby-theme-portfolio-minimal/sections/People/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ export function PeopleSection(props: PageSection): React.ReactElement {

const shouldShowButton = data.button !== undefined && data.button.visible !== false;
const [shownAlumni, setShownAlumni] = React.useState<boolean>(
shouldShowButton ? false : true
// always show alumni!
// shouldShowButton ? false : true
true
);

function loadAlumniHandler() {
Expand Down

0 comments on commit b18835a

Please sign in to comment.