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.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/dashboard/lists/page.tsx b/apps/web/app/dashboard/lists/page.tsx
index f839ca80..1c22ac32 100644
--- a/apps/web/app/dashboard/lists/page.tsx
+++ b/apps/web/app/dashboard/lists/page.tsx
@@ -6,7 +6,7 @@ export default async function ListsPage() {
const lists = await api.lists.list();
return (
- <div className="flex flex-col gap-3">
+ <div className="flex flex-col gap-3 rounded-md border bg-background p-4">
<p className="text-2xl">📋 All Lists</p>
<Separator />
<AllListsView initialData={lists.lists} />