Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(landing): ensure explicit delay prop takes precedence over transi…
…tion spread
  • Loading branch information
waleedlatif1 committed Mar 30, 2026
commit ba2ccdd1286202a0e5000101a1373d2deba549f9
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function FeatureToggleItem({
className='flex cursor-pointer items-center gap-2 rounded-[4px] py-0.5'
initial={{ opacity: 0, x: -6 }}
animate={isInView ? { opacity: 1, x: 0 } : {}}
transition={{ delay, ...transition }}
transition={{ ...transition, delay }}
onClick={onToggle}
onKeyDown={(e) => {
if (e.key === 'Enter' || e.key === ' ') {
Expand Down
Loading