Skip to content

Commit

Permalink
WIP adding determinism in transition stores
Browse files Browse the repository at this point in the history
  • Loading branch information
divdavem committed Jun 13, 2024
1 parent 5563361 commit bd688f9
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 @@ -345,7 +345,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 bd688f9

Please sign in to comment.