From 5cc3d2fe687e23c6eaff48b0fc24312e3b688d37 Mon Sep 17 00:00:00 2001 From: Daniel Silva Date: Thu, 4 Jul 2024 17:09:03 +0200 Subject: [PATCH] adding email to usermetadata object --- src/types/onyx/UserMetadata.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/onyx/UserMetadata.ts b/src/types/onyx/UserMetadata.ts index a8b34cb29401..f58cb2dfa56f 100644 --- a/src/types/onyx/UserMetadata.ts +++ b/src/types/onyx/UserMetadata.ts @@ -12,6 +12,9 @@ type UserMetadata = { /** User's account ID */ accountID?: number; + /** User email so we can filter out certain accounts */ + email?: string; + /** Type of environment the user is using (staging or production) */ environment?: string; };