flysoft-react-ui 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/AI_CONTEXT.md CHANGED
@@ -214,5 +214,4 @@ function UserForm() {
214
214
  };
215
215
 
216
216
  return <Button loading={isLoading} onClick={handleSubmit}>Save</Button>;
217
- }
218
- ```
217
+ }
@@ -117,9 +117,9 @@ export const AuthProvider = ({ children, getToken, getUserData, removeToken, })
117
117
  }
118
118
  }
119
119
  catch (error) {
120
- console.error("Error durante el login:", error);
121
120
  setUser(null);
122
121
  setIsAuthenticated(false);
122
+ throw error;
123
123
  }
124
124
  finally {
125
125
  setIsLoading(false);