Erik Montes

Results 37 comments of Erik Montes

@baltagih2 wrapInSafeArea={false} is no longer needed as SafeArea is no longer included in the library in 2.0.0+.

@baltagih2 you can check what changed in 2.0.0 https://github.com/FaridSafi/react-native-gifted-chat/pull/2353/files and 2.0.1 https://github.com/FaridSafi/react-native-gifted-chat/pull/2361/files

@brightsider @ezequiel88 what are you trying to access in the component with the ref?

Try v2.1.0, in theory should be fixed.

Seems to happen on the initial render. Here's my workaround for now in case anyone is interested: ```jsx const firstRender = useRef(true); useEffect(() => { firstRender.current = false; }, []);...

@derrickmehaffy Is it me or has this been fixed? I tried it on `4.14.0` and I do get a descriptive error as it was expected. ```graphql mutation { register(input: {...

@derrickmehaffy I think what should be happening is that instead of returning this: ```json { "error": { "data": null, "error": { "status": 401, "name": "UnauthorizedError", "message": "Missing or invalid credentials",...