Skip to content

Commit

Permalink
add rendering keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaumaus committed Dec 19, 2024
1 parent 70b066b commit 3d4f7ba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions web/app/pages/Dashboard/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,11 @@ export const ProjectCard = ({ live = null, project, overallStats }: ProjectCardP
export const ProjectCardSkeleton = () => {
return (
<div className='grid grid-cols-1 gap-x-6 gap-y-3 lg:grid-cols-3 lg:gap-y-6'>
{_map(Array(12), () => (
<div className='min-h-[153.1px] animate-pulse cursor-wait overflow-hidden rounded-xl border border-gray-200 bg-gray-50 dark:border-slate-800/25 dark:bg-slate-800'>
{_map(Array(12), (_, index) => (
<div
key={index}
className='min-h-[153.1px] animate-pulse cursor-wait overflow-hidden rounded-xl border border-gray-200 bg-gray-50 dark:border-slate-800/25 dark:bg-slate-800'
>
<div className='px-4 py-4'>
<div className='flex items-center justify-between'>
<div className='h-6 w-3/4 rounded bg-gray-200 dark:bg-slate-700'></div>
Expand Down

0 comments on commit 3d4f7ba

Please sign in to comment.