You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(effects): change the signature of provideEffect (#3587)
BREAKING CHANGE:
The signature of `provideEffects` is changed to expect a
spreaded array of effects.
BEFORE:
`provideEffects` expecteded the effects to be passed as an array.
```ts
// single effect
provideEffects([MyEffect])
// multiple effects
provideEffects([MyEffect, MySecondEffect])
```ts
AFTER:
`provideEffects` expects the effects as a spreaded array as argument.
```ts
// single effect
provideEffects(MyEffect)
// multiple effects
provideEffects(MyEffect, MySecondEffect)
```ts
0 commit comments