Gabriel Felipe

Results 10 comments of Gabriel Felipe

As far as I could see in the code, `initialWindowSafeAreaInsets` is declared to be: ```ts export const initialWindowSafeAreaInsets = initialWindowMetrics?.insets; ``` And it should be the same, but I believe...

@LauraBeatris This condition prevents the `useField`, created for all TextInput, from giving errors for not finding the object's property with this undefined fieldName. This is a problem of the dot-object...

@LauraBeatris Okay, now I understand what you meant by other problems, but I don't think that using a throw at the beginning of everything will solve the problems, because as...

@LauraBeatris I don't know if this is the best way because I can't test it now, but maybe adding ```javascript if (!name) { return {registerField}; } ``` instead of ```javascript...

@LauraBeatris I'm not sure now, because I can't remember, but it seems to me that when I tested this earlier, the provider registers all the children in the Form.tsx file,...

@diego3g Yes, I can commit again using the guidelines, but I believe this is not yet the root of the problem

@AlexJuarez please merge it

Very good, this solves the problem

You are trying to use it without considering it a client-side component. Use `'use client';` on top of the files that are using it and then it will work.