Skip to content

Commit

Permalink
feat: reduce data to viewable length
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyotato committed Apr 17, 2024
1 parent 22e4298 commit e95b858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/SkeletonGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface PostProps extends PropsWithChildren {
}

export function SkeletonCardsGrid() {
const data = new Array(20).fill(POST);
const data = new Array(6).fill(POST);

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

0 comments on commit e95b858

Please sign in to comment.