From beb11db6d621942016075fcb7eeeac66c7ee38cf Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Sun, 7 Sep 2025 13:30:09 +0200 Subject: [PATCH] =?utf8?q?WIP:=20Injections,=20so=20klappt=20es=20f=C3=BCr?= =?utf8?q?=20beide!!?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/app/store/login.effects.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/store/login.effects.ts b/src/app/store/login.effects.ts index bf29516..5f1b912 100644 --- a/src/app/store/login.effects.ts +++ b/src/app/store/login.effects.ts @@ -7,6 +7,7 @@ import { AuthService } from '../services/auth.service'; @Injectable() export class LoginEffects { + private actions$ = inject(Actions); private authService = inject(AuthService); login$ = createEffect(() => @@ -20,6 +21,4 @@ export class LoginEffects { ) ) ); - - constructor(private actions$: Actions) {} } -- 2.20.1