Skip to content

Commit

Permalink
web cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcherry committed Jan 31, 2024
1 parent fdb998a commit 7970afa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/app/casts/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { CastsPage } from '@components/casts/CastsPage';
import { LandingPage } from '@components/landing/LandingPage';
import { ProfilePage } from '@components/profile/ProfilePage';
import { getCurrentUser } from '@lib/auth/getCurrentUser';

export default async function Feed() {
const user = await getCurrentUser();

if (user) {
return <ProfilePage fid={user.fid} />;
return <CastsPage fid={user.fid} />;
}

return <LandingPage />;
Expand Down
2 changes: 2 additions & 0 deletions web/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
}

@layer base {
html,
body {
font-size: 15px;
scrollbar-gutter: stable both-edges;
}
}
File renamed without changes.

0 comments on commit 7970afa

Please sign in to comment.