Skip to content

Commit

Permalink
remove broken imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nl32 committed Oct 15, 2024
1 parent cb34491 commit 5bd0fa5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Header from '../components/header/BaseHeader';
import TagFilter from '../components/club/directory/TagFilter';
import ClubDirectoryGrid from '../components/club/directory/ClubDirectoryGrid';
import type { Metadata } from 'next';
Expand All @@ -23,7 +22,7 @@ type Params = {

const Home = async (props: Params) => {
const tags = await api.club.distinctTags();
const featured = await api.club.getCarousel();
// const featured = await api.club.getCarousel();
// const onlyClubs = featured.map((item) => item.club);
return (
<main className="">
Expand Down
1 change: 0 additions & 1 deletion src/components/header/BaseHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { getServerAuthSession } from '@src/server/auth';
import { ClubSearchBar } from '../searchBar/ClubSearchBar';
import { EventSearchBar } from '../searchBar/EventSearchBar';
import SignInButton from './signInButton';
import MobileNav from '../nav/MobileNav';
import { api } from '@src/trpc/server';
import NewSidebar from '../nav/Slide';

Expand Down

0 comments on commit 5bd0fa5

Please sign in to comment.