Skip to content

Commit d2bd6ff

Browse files
authored
Merge pull request #29 from saadman-galib/fix/home-blog-loading
Blog loading reduced to 3 to fit on desktop screen
2 parents 7197190 + f4dd900 commit d2bd6ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Homepage/Homepage.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export const Homepage = () => {
9898
<div className="grid gird-cols-1 gap-4 lg:p-4 mt-4 lg:mt-2">
9999
{isLoading ? (
100100
// Show skeletons while loading
101-
Array.from({ length: 5 }).map((_, index) => (
101+
Array.from({ length: 3 }).map((_, index) => (
102102
<BlogCardSkeleton key={index} />
103103
))
104104
) : (

0 commit comments

Comments
 (0)