- 
                Notifications
    
You must be signed in to change notification settings  - Fork 67
 
Open
Description
Is there an easier way to handle errors? The best I can see is to manually safely check the status:
const [ queryState ] = useRequest(queryConfig);
if(queryState?.status && queryState?.status >= 400) {
    alert('error')
}It would be nice if a boolean was provided:
const [ queryState ] = useRequest(queryConfig);
if(queryState.failed) {
    alert('error')
}The definition of failed could default to >=400 or provide a custom callback in the config (similar to axios validateStatus). Is there a better option I'm not seeing that's already available?
Metadata
Metadata
Assignees
Labels
No labels