Skip to content

Commit

Permalink
fix: improve determinism in transition stores
Browse files Browse the repository at this point in the history
  • Loading branch information
divdavem committed Nov 4, 2024
1 parent ebfbdac commit aa87456
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/src/services/transitions/baseTransitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,10 @@ export const createTransition = (config?: PropsConfig<TransitionProps>): Transit
visible$,
element$,
elementPresent$,
transitioning$,
transitioning$: computed(() => {
void visibleAction$();
return transitioning$();
}),
shown$,
hidden$,
}),
Expand Down

0 comments on commit aa87456

Please sign in to comment.