Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
wenwenhua committed Dec 2, 2024
1 parent 9f5819a commit 7dfd0d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export default function useAnimationHooks<T, P> (props: _ViewProps) {
// 添加每个key的多次step动画
animatedKeys.forEach(key => {
// key不存在,第一轮取shareValMap[key]value,非第一轮取上一轮的
let toVal = rules.get(key) !== undefined
const toVal = rules.get(key) !== undefined
? rules.get(key)
: transform.get(key) !== undefined
? transform.get(key)
Expand Down

0 comments on commit 7dfd0d1

Please sign in to comment.