Skip to content

Commit

Permalink
fix broken imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nl32 committed Sep 30, 2024
1 parent db5daed commit 1a8928e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/app/directory/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Header from '@src/components/header/BaseHeader';
import OrgHeader from '@src/components/OrgHeader';
import OrgInfoSegment from '@src/components/OrgInfoSegment';
import OrgUpcomingEvents from '@src/components/OrgUpcomingEvents';
import OrgHeader from '@src/components/club/listing/OrgHeader';
import OrgInfoSegment from '@src/components/club/listing/OrgInfoSegment';
import OrgUpcomingEvents from '@src/components/club/listing/OrgUpcomingEvents';
import { api } from '@src/trpc/server';
import { db } from '@src/server/db';
import { eq } from 'drizzle-orm';
Expand Down
2 changes: 1 addition & 1 deletion src/components/club/listing/OrgHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type {
SelectClub,
SelectContact as Contacts,
} from '@src/server/db/models';
import JoinButton from './JoinButton';
import JoinButton from '../JoinButton';
import { getServerAuthSession } from '@src/server/auth';
import Link from 'next/link';
import { api } from '@src/trpc/server';
Expand Down

0 comments on commit 1a8928e

Please sign in to comment.