Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
olexh committed Mar 30, 2024
1 parent 8afa6c1 commit e6604b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/(pages)/anime/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Media from './components/media';
import Staff from './components/staff';
import WatchStats from './components/watch-stats/watch-stats';

const AnimePage = ({ params }: { params: Record<string, string> }) => {
const AnimePage = () => {
return (
<div className="grid grid-cols-1 gap-12 lg:grid-cols-[1fr_33%] lg:gap-16 xl:grid-cols-[1fr_30%]">
<div className="relative order-2 flex flex-col gap-12 lg:order-1">
Expand All @@ -22,14 +22,14 @@ const AnimePage = ({ params }: { params: Record<string, string> }) => {
<Links />
<div className="flex flex-col gap-12 lg:hidden">
<WatchStats />
<Followings slug={params.slug} />
<Followings />
</div>
</div>
<div className="order-1 flex flex-col gap-12 lg:order-2">
<About />
<div className="hidden lg:flex lg:flex-col lg:gap-12">
<WatchStats />
<Followings slug={params.slug} />
<Followings />
</div>
</div>
</div>
Expand Down

0 comments on commit e6604b3

Please sign in to comment.