Skip to content

Commit

Permalink
Merge pull request #41 from DevMinds-TIS/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
julio7173 authored Nov 19, 2024
2 parents 823d72c + 8da770f commit 65788b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export default function ProjectPage({ params }: { params: { Código: string } })
</section>
<section className="flex flex-wrap gap-4 p-4">
{[...Array(4)].map((_, index) => (
<Skeleton className="w-60 h-28 rounded-xl" />
<Skeleton key={index} className="w-60 h-28 rounded-xl" />
))}
</section>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(pages)/dashboard/(admin)/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default function ProjectsPage() {
</section>
<section className="flex flex-wrap p-4 gap-8">
{[...Array(4)].map((_, index) => (
<div className='flex flex-col w-fit gap-2'>
<div key={index} className='flex flex-col w-fit gap-2'>
<Skeleton className="w-64 h-12 rounded-lg" />
<Skeleton className="w-64 h-64 rounded-xl" />
</div>
Expand Down

0 comments on commit 65788b8

Please sign in to comment.