Hi @rp_st, I wanna ask a question.
I've override emailPasswordSignIn (backend), it seems the response is only support "OK" and "WRONG_CREDENTIALS_ERROR" on status key like snippet below:
(method) emailPasswordSignIn(input: {
email: string;
password: string;
tenantId: string;
userContext: any;
}): Promise<{
status: "OK";
user: ThirdPartyEmailPassword.User;
} | {
status: "WRONG_CREDENTIALS_ERROR";
}>
My objective goal is to add another custom error message on frontend (Im using pre-built UI). It always show "Unknown error" when I return my own status