diff --git a/context/core/userStore.ts b/context/core/userStore.ts index 8edeb424..d75e4b86 100644 --- a/context/core/userStore.ts +++ b/context/core/userStore.ts @@ -11,7 +11,7 @@ interface User { phone?: string cognitoUsername?: string userId?: string - identities?: unknown[] + identities?: any[] } // Define el estado y las acciones del store diff --git a/hooks/auth/useAuthUser.ts b/hooks/auth/useAuthUser.ts index 8d22fd40..b040599b 100644 --- a/hooks/auth/useAuthUser.ts +++ b/hooks/auth/useAuthUser.ts @@ -11,7 +11,7 @@ interface UserPayload { userId: string plan?: string picture?: string - identities?: unknown[] + identities?: any[] [key: string]: any }