Skip to content

Commit 73bd977

Browse files
committed
fix: icons & typos
1 parent fb0adb8 commit 73bd977

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/(protected)/subscriptions/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export default async function Subscriptions({
100100
tabs={[
101101
{ name: 'All', href: '/subscriptions' },
102102
{ name: 'Active', href: '/subscriptions?status=active' },
103-
{ name: 'Overdue', href: '/subscriptions?status=expired' },
103+
{ name: 'Expired', href: '/subscriptions?status=expired' },
104104
]}
105105
activeHref={`/subscriptions${status ? `?status=${status}` : ''}`}
106106
/>

app/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import {
55
Users,
66
UserCog,
77
CreditCard,
8-
ScrollText,
9-
BookCopy,
108
ChartSpline,
119
BellIcon,
10+
BookUser,
11+
Ticket,
1212
} from 'lucide-react'
1313
import { Button } from '@/components/ui/button'
1414
import { IsLoggedIn } from '@/lib/firebase/firebase'
@@ -25,11 +25,11 @@ const menuItems = [
2525
{ title: 'Memberships', icon: CreditCard, href: '/memberships', level: 1 },
2626
{
2727
title: 'Subscriptions',
28-
icon: ScrollText,
28+
icon: Ticket,
2929
href: '/subscriptions',
30-
level: 3,
30+
level: 2,
3131
},
32-
{ title: 'Borrows', icon: BookCopy, href: '/borrows', level: 2 },
32+
{ title: 'Borrows', icon: BookUser, href: '/borrows', level: 2 },
3333
]
3434

3535
export default async function LibraryDashboard() {

0 commit comments

Comments
 (0)