useTuitioClient fix
parent
3f35229fef
commit
e5685daa52
|
@ -27,8 +27,10 @@ const useTuitioClient = (options: TuitioClientHookOptions) => {
|
|||
}
|
||||
return response;
|
||||
} catch (error) {
|
||||
if (onLoginError) onLoginError(error);
|
||||
else throw error;
|
||||
if (onLoginError) {
|
||||
onLoginError(error);
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue