Skip to content

Commit 43464fb

Browse files
committed
fix: weird skeleton issues;
1 parent 3ec6b05 commit 43464fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/dashboard/app/(main)/websites/[id]/funnels/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const EditFunnelDialog = dynamic(
3939

4040
function FunnelsListSkeleton() {
4141
return (
42-
<div className="border">
42+
<div>
4343
{[1, 2, 3].map((i) => (
4444
<FunnelItemSkeleton key={i} />
4545
))}

apps/dashboard/app/(main)/websites/[id]/goals/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { GoalsList } from "./_components/goals-list";
2222

2323
function GoalsListSkeleton() {
2424
return (
25-
<div className="border-border border-t">
25+
<div>
2626
{[1, 2, 3].map((i) => (
2727
<GoalItemSkeleton key={i} />
2828
))}

0 commit comments

Comments
 (0)