Skip to content

Commit

Permalink
chore(demo): fix duration (#10021)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Dec 18, 2024
1 parent 8fddac1 commit a9a856b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/kit/directives/skeleton/skeleton.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class TuiSkeletonStyles {}
export class TuiSkeleton implements OnChanges {
private animation?: Animation;
private readonly el = tuiInjectElement();
private readonly duration = tuiGetDuration(inject(TUI_ANIMATIONS_SPEED) * 2);
private readonly duration = tuiGetDuration(inject(TUI_ANIMATIONS_SPEED)) * 2;

protected readonly nothing = tuiWithStyles(TuiSkeletonStyles);

Expand Down

0 comments on commit a9a856b

Please sign in to comment.