fix(lint): add missing key to LazyMotion in ReferencesSlider
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 41s
Build & Deploy / 🧪 QA (push) Successful in 1m43s
Build & Deploy / 🏗️ Build (push) Successful in 3m22s
Build & Deploy / 🚀 Deploy (push) Successful in 33s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 1m3s
Build & Deploy / 🔔 Notify (push) Successful in 3s

This commit is contained in:
2026-06-23 12:43:44 +02:00
parent e4a20b08b9
commit d014c875fc

View File

@@ -126,9 +126,8 @@ export function ReferencesSlider(props: ReferencesSliderProps) {
: fallbacks[i % fallbacks.length];
return (
<LazyMotion features={domAnimation}>
<LazyMotion key={ref.id} features={domAnimation}>
<m.div
key={ref.id}
initial={{ opacity: 0, x: 20 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true, margin: "-50px" }}