File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const FS = {
3535 * If the metadata is null or the email is 'undefined', the user identity is anonymized.
3636 * If the metadata contains an accountID, the user identity is defined with it.
3737 */
38- fsIdentify : ( metadata : UserMetadata | null ) => {
38+ fsIdentify : ( metadata : OnyxEntry < UserMetadata > ) => {
3939 if ( ! metadata ?. accountID ) {
4040 // anonymize FullStory user identity metadata
4141 FullStory . anonymize ( ) ;
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ const FS = {
7676 * If the metadata does not contain an email, the user identity is anonymized.
7777 * If the metadata contains an accountID, the user identity is defined with it.
7878 */
79- fsIdentify : ( metadata : UserMetadata | null ) => {
79+ fsIdentify : ( metadata : OnyxEntry < UserMetadata > ) => {
8080 if ( ! metadata ?. accountID ) {
8181 // anonymize FullStory user identity metadata
8282 FS . anonymize ( ) ;
You can’t perform that action at this time.
0 commit comments