forked from mystiq/hydrogen-web
Remove error code
This commit is contained in:
parent
891375a885
commit
e8c480426a
2 changed files with 1 additions and 11 deletions
|
@ -101,10 +101,6 @@ export class Registration {
|
||||||
else {
|
else {
|
||||||
throw new Error("This stage could not be completed!");
|
throw new Error("This stage could not be completed!");
|
||||||
}
|
}
|
||||||
case 400:
|
|
||||||
default:
|
|
||||||
const error = "error" in response? response.error: "Could not parse response";
|
|
||||||
throw new Error(error);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ export type AccountDetails = {
|
||||||
inhibitLogin: boolean;
|
inhibitLogin: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type RegistrationResponse = RegistrationResponseMoreDataNeeded | RegistrationResponseError | RegistrationResponseSuccess;
|
export type RegistrationResponse = RegistrationResponseMoreDataNeeded | RegistrationResponseSuccess;
|
||||||
|
|
||||||
export type RegistrationResponseMoreDataNeeded = {
|
export type RegistrationResponseMoreDataNeeded = {
|
||||||
completed?: string[];
|
completed?: string[];
|
||||||
|
@ -31,12 +31,6 @@ export type RegistrationResponseMoreDataNeeded = {
|
||||||
status: 401;
|
status: 401;
|
||||||
}
|
}
|
||||||
|
|
||||||
type RegistrationResponseError = {
|
|
||||||
errcode: string;
|
|
||||||
error: string;
|
|
||||||
status: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type RegistrationResponseSuccess = {
|
export type RegistrationResponseSuccess = {
|
||||||
user_id: string;
|
user_id: string;
|
||||||
device_id: string;
|
device_id: string;
|
||||||
|
|
Loading…
Reference in a new issue