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; };