aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/lists
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/dashboard/lists')
-rw-r--r--apps/web/app/dashboard/lists/page.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/web/app/dashboard/lists/page.tsx b/apps/web/app/dashboard/lists/page.tsx
index a8c53eb6..d379b1bb 100644
--- a/apps/web/app/dashboard/lists/page.tsx
+++ b/apps/web/app/dashboard/lists/page.tsx
@@ -1,4 +1,5 @@
import AllListsView from "@/components/dashboard/lists/AllListsView";
+import { Separator } from "@/components/ui/separator";
import { api } from "@/server/api/client";
export default async function ListsPage() {
@@ -7,7 +8,7 @@ export default async function ListsPage() {
return (
<div className="container mt-4 flex flex-col gap-3">
<p className="text-2xl">📋 All Lists</p>
- <hr />
+ <Separator />
<AllListsView initialData={lists.lists} />
</div>
);