Skip to content

Commit

Permalink
Removed debuggers
Browse files Browse the repository at this point in the history
  • Loading branch information
mdyoung3 committed Mar 4, 2024
1 parent 6ff05ac commit db86919
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/node/stanford-person/libguide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ interface Props extends PropsWithoutRef<any> {
}

const LibGuides = ({guides, headingLevel = 2, ...props}: Props) => {
console.log('works');
console.log('the guides: ', guides);
const courseGuides = guides.filter(guide => guide.type === 'Course Guide');
const genPurposeGuides = guides.filter(guide => guide.type === 'General Purpose Guide');
const subjectGuides = guides.filter(guide => guide.type === "Subject Guide")
Expand Down Expand Up @@ -77,8 +75,6 @@ const LibGuides = ({guides, headingLevel = 2, ...props}: Props) => {
)
}

// console.log(guides);

const LibGuideSection = ({heading, guides}: {heading: string, guides: LibGuide[]}) => {
const firstGuides = guides.slice(0, 5);
const moreGuides = guides.slice(5)
Expand Down

0 comments on commit db86919

Please sign in to comment.