From 268cc878d69838e56b7f8142dafda0ba6c6bceb5 Mon Sep 17 00:00:00 2001 From: Stivenjs Date: Fri, 9 May 2025 22:03:36 -0500 Subject: [PATCH] fix(userStore): correct typo in 'dentities' to 'identities' This commit fixes a typo in the `User` interface where the property `dentities` was incorrectly named. It has been corrected to `identities` to ensure proper functionality and consistency in the codebase. --- context/core/userStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context/core/userStore.ts b/context/core/userStore.ts index b2e036c2..8edeb424 100644 --- a/context/core/userStore.ts +++ b/context/core/userStore.ts @@ -11,7 +11,7 @@ interface User { phone?: string cognitoUsername?: string userId?: string - dentities?: unknown[] + identities?: unknown[] } // Define el estado y las acciones del store