diff --git a/src/types/onyx/UserMetadata.ts b/src/types/onyx/UserMetadata.ts index f58cb2dfa56f..5fc5d477afca 100644 --- a/src/types/onyx/UserMetadata.ts +++ b/src/types/onyx/UserMetadata.ts @@ -17,6 +17,9 @@ type UserMetadata = { /** Type of environment the user is using (staging or production) */ environment?: string; + + /** Information if user dismissed the try new dot popup before. Can be "empty", true or false */ + tryNewDotDismissed?: 'empty' | boolean; }; export default UserMetadata;