From f302598a454996abbb4f1ff34ddb55b92aed52d0 Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Sun, 9 Jun 2024 16:38:57 +0200 Subject: [PATCH] Add missing js doc --- src/types/onyx/UserMetadata.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/onyx/UserMetadata.ts b/src/types/onyx/UserMetadata.ts index 14181b33c4b4..a8b34cb29401 100644 --- a/src/types/onyx/UserMetadata.ts +++ b/src/types/onyx/UserMetadata.ts @@ -11,6 +11,8 @@ type UserMetadata = { /** User's account ID */ accountID?: number; + + /** Type of environment the user is using (staging or production) */ environment?: string; };