Skip to content

Commit e3f603b

Browse files
authored
fix: Spinny goes out of the IdeasList component (freeCodeCamp-2025-Summer-Hackathon#250)
1 parent 9c82a4d commit e3f603b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/IdeasList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const IdeasList = ({
7676
{error ? (
7777
`${error}`
7878
) : isLoading && entries.length === 0 ? (
79-
<div className='spinner-wrapper-container'>
79+
<div className='flex items-center justify-center min-h-[100px]'>
8080
<Spinny />
8181
</div>
8282
) : entries.length === 0 ? (

0 commit comments

Comments
 (0)