diff --git a/src/app/registration-form/registration-form.component.ts b/src/app/registration-form/registration-form.component.ts index 4c44154..d416c25 100644 --- a/src/app/registration-form/registration-form.component.ts +++ b/src/app/registration-form/registration-form.component.ts @@ -32,7 +32,7 @@ export class RegistrationFormComponent { } this.serverApi .playerRegister(this.registrationForm.value) - .subscribe((response) => { + .subscribe(() => { this.notifications.publish('Registered successfully!', NotificationType.Information); }); }