Skip to content

Commit

Permalink
fix breaking fe build
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilsAutumn committed Dec 15, 2024
1 parent 2aab787 commit 71024e6
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions frontend/src/app/(core)/gallery/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,7 @@ const Page = ({ params: { slug } }: PageProps<never, { slug: string }>) => {
)
} : prev);
}}
className={`
absolute inset-0 object-cover transition-all duration-300
${mediaResponse?.files.find(f => f.src === src)?.isLoaded
? 'opacity-100'
: 'opacity-0'
}
group-hover:scale-110
`}
className="absolute inset-0 object-cover transition-all duration-30 group-hover:scale-110"
/>
</div>
),
Expand Down

0 comments on commit 71024e6

Please sign in to comment.