Christian Llanos

Results 8 comments of Christian Llanos

I have the same issue with flowtype. It shows me three possible methods that do not fit my needs: - append(name: string, value: string): void; - append(name: string, value: Blob,...

I have to say I've been stuck in this problem for a while now and it was my fault. I forgot to return an action on an Epic. I hope...

@tonykawa I had it like this: ``` export function rehydrateEpic(action$: ActionsObservable) { return action$.ofType(REHYDRATE) .mergeMap(({ payload }) => { const { authenticated } = payload.auth; if (authenticated) { return Observable.of(HomeAction)...

Understanding the following helped me achieve the desired out in React Native The way React Native zIndex hierarchy works is as follows: ``` ``` `Children1` will always render below `Children3`...

When there is an event that stars, lets say, 11PM and ends 1AM on the next day the icon won't draw. I know these kind of events don't occur that...

> There is no `StylesProvider` but we do have [`ThemeProvider`](https://mui.com/material-ui/customization/theming/#theme-provider) which you can use to customize the behavior. I don't see an option to customize the class names > For...

I'll close this because the main issue was my bad test. The state of the component at the time of the snapshot was not idempotent, thus, resulting in different snapshots...