Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula committed Feb 19, 2024
1 parent e89bb3f commit 5409e99
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 3 additions & 1 deletion frontend/pages/club/[club]/alumni.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ const AlumniPage = ({ club, alumni }: AlumniPageProps): ReactElement => {
<ClubMetadata club={club} />
<Container paddingTop>
<div className="is-clearfix">
<Title className="is-pulled-left">{club.name} Alumni</Title>
<div className="is-pulled-left">
<Title>{club.name} Alumni</Title>
</div>
<Link href={CLUB_ROUTE()} as={CLUB_ROUTE(club.code)}>
<a className="button is-pulled-right is-secondary is-medium">
Back
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ const ApplicationPage = ({
<ClubMetadata club={club} />
<Container paddingTop>
<div className="is-clearfix">
<Title className="is-pulled-left">{application.name}</Title>
<div className="is-pulled-left">
<Title>{application.name}</Title>
</div>
</div>
{application.description != null && application.description !== '' && (
<>
Expand Down
4 changes: 3 additions & 1 deletion frontend/pages/club/[club]/apply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ const ApplyPage = ({ club, applications }: Props): ReactElement => {
<ClubMetadata club={club} />
<Container paddingTop>
<div className="is-clearfix">
<Title className="is-pulled-left">{club.name} Application</Title>
<div className="is-pulled-left">
<Title>{club.name} Application</Title>
</div>
<Link href={CLUB_ROUTE()} as={CLUB_ROUTE(club.code)}>
<a className="button is-pulled-right is-secondary is-medium">
Back
Expand Down
4 changes: 3 additions & 1 deletion frontend/pages/club/[club]/org.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ const OrganizationPage = ({ club }: Props): ReactElement => {
<ClubMetadata club={club} />
<Container paddingTop>
<div className="is-clearfix">
<Title className="is-pulled-left">{club.name}</Title>
<div className="is-pulled-left">
<Title>{club.name}</Title>
</div>
<Link href={CLUB_ROUTE()} as={CLUB_ROUTE(club.code)}>
<a className="button is-pulled-right is-secondary is-medium">
Back
Expand Down
4 changes: 1 addition & 3 deletions frontend/pages/events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,7 @@ const CalendarHeader = ({
return (
<StyledHeader>
<div className="info">
<Title className="title" style={{ color: CLUBS_GREY, margin: 0 }}>
Events
</Title>
<Title style={{ color: CLUBS_GREY, margin: 0 }}>Events</Title>
<div>{label}</div>
</div>
<div className="tools">
Expand Down
2 changes: 1 addition & 1 deletion frontend/pages/user/[user]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const UserProfilePage = ({
/>
</div>
<div className="is-pulled-left">
<Title className="mb-2">{profile.name}</Title>
<Title>{profile.name}</Title>
<div className="tags mb-0">
{profile.school
.sort((a, b) => a.name.localeCompare(b.name))
Expand Down

0 comments on commit 5409e99

Please sign in to comment.