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