Skip to content

Commit a7e1b31

Browse files
committed
fix: loading animation on luxe settings
1 parent 0f8b9de commit a7e1b31

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pages/luxe-views/LuxeSettingsPage.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ const LuxeSection = ({ title, icon, children, delay = 0, id }) => (
3333
<motion.div
3434
id={id}
3535
initial={{ opacity: 0, y: 20 }}
36-
whileInView={{ opacity: 1, y: 0 }}
37-
viewport={{ once: true }}
36+
animate={{ opacity: 1, y: 0 }}
3837
transition={{ duration: 0.6, delay }}
3938
className="bg-white/60 backdrop-blur-md border border-black/5 rounded-sm p-8 md:p-12 shadow-sm relative group overflow-hidden"
4039
>

0 commit comments

Comments
 (0)