refactor: nop on onError

This commit is contained in:
Derrick Hammer 2024-03-20 16:22:06 -04:00
parent 9332598627
commit bba7ce59d3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ export const createPortalAuthProvider = (sdk: Sdk): AuthProvider => {
},
async onError(error: any): Promise<OnErrorResponse> {
return {logout: true};
return {};
},
async register(params: RegisterFormRequest): Promise<AuthActionResponse> {