Skip to content

Commit ba2ccdd

Browse files
committed
fix(landing): ensure explicit delay prop takes precedence over transition spread
1 parent cb493e9 commit ba2ccdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/app/(home)/components/enterprise/components/access-control-panel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ function FeatureToggleItem({
112112
className='flex cursor-pointer items-center gap-2 rounded-[4px] py-0.5'
113113
initial={{ opacity: 0, x: -6 }}
114114
animate={isInView ? { opacity: 1, x: 0 } : {}}
115-
transition={{ delay, ...transition }}
115+
transition={{ ...transition, delay }}
116116
onClick={onToggle}
117117
onKeyDown={(e) => {
118118
if (e.key === 'Enter' || e.key === ' ') {

0 commit comments

Comments
 (0)