From fdc458e167ae2788589f2daf72b5c6d7e4ac839e Mon Sep 17 00:00:00 2001 From: kushal-saha Date: Wed, 6 May 2026 06:22:27 +0000 Subject: [PATCH] chore: add store state to simplify manageing validationErros and isLoading --- frontend/src/app/core/types/http.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 frontend/src/app/core/types/http.ts diff --git a/frontend/src/app/core/types/http.ts b/frontend/src/app/core/types/http.ts new file mode 100644 index 0000000..9ebbf16 --- /dev/null +++ b/frontend/src/app/core/types/http.ts @@ -0,0 +1,4 @@ +export interface HttpStoreState { + isLoading: boolean; + validationErrors: Record | null; +}