Skip to content

Commit

Permalink
Divide duration by 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Latropos committed Jun 27, 2024
1 parent 49a6882 commit 82d1d95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class FadingTransition
const delayFunction = this.getDelayFunction();
const callback = this.callbackV;
const delay = this.getDelay();
const duration = this.durationV ?? 500;
const duration = (this.durationV ?? 500) / 2;

return (values) => {
'worklet';
Expand Down

0 comments on commit 82d1d95

Please sign in to comment.