From 04ab9ce4dc8ba6658510c5dce751c78a27974b84 Mon Sep 17 00:00:00 2001 From: Dorian Nemec Date: Wed, 12 Feb 2025 14:20:47 +0100 Subject: [PATCH] TD-29: Registration Form Created --- src/app/registration-form/registration-form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); }