Skip to content

Commit e95b858

Browse files
committed
feat: reduce data to viewable length
1 parent 22e4298 commit e95b858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/shared/SkeletonGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export interface PostProps extends PropsWithChildren {
1414
}
1515

1616
export function SkeletonCardsGrid() {
17-
const data = new Array(20).fill(POST);
17+
const data = new Array(6).fill(POST);
1818

1919
const cards = data.map((article, i) => (
2020
<Wrap key={article?.id + i}>

0 commit comments

Comments
 (0)