From 7eba6980fa45fddd70e48e56358d85565780e83d Mon Sep 17 00:00:00 2001 From: Pawel Fras Date: Thu, 5 Sep 2024 12:46:43 +0200 Subject: [PATCH] refactor: change error type from to in ErrorAction interface --- .../src/error-handling/effects-error-handler/error-action.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/core/src/error-handling/effects-error-handler/error-action.ts b/projects/core/src/error-handling/effects-error-handler/error-action.ts index 80467e6aaac..2e04db6cc34 100644 --- a/projects/core/src/error-handling/effects-error-handler/error-action.ts +++ b/projects/core/src/error-handling/effects-error-handler/error-action.ts @@ -7,5 +7,5 @@ import { Action } from '@ngrx/store'; export interface ErrorAction extends Action { - error: any; + error: Object; }