Skip to content

Commit

Permalink
Update tweened.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pushkine authored May 8, 2020
1 parent c743e72 commit 968429e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/motion/tweened.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function tweened<T>(value?: T, defaults: Options<T> = {}): Tweened<T> {
} = assign(assign({}, defaults), opts);

if (duration === 0) {
store.set(target_value);
store.set(value = target_value);
return Promise.resolve();
}

Expand Down

0 comments on commit 968429e

Please sign in to comment.