Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
smithjw1 committed Feb 5, 2025
1 parent aebd012 commit f4f0b80
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion http-concat
2 changes: 1 addition & 1 deletion jetpack
Submodule jetpack updated 559 files
6 changes: 3 additions & 3 deletions telemetry/pendo/pendo-utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ function get_base_properties_of_pendo_user( $property_suffix ): array {
$salt = constant( 'VIP_TELEMETRY_SALT' );
$tracks_user_id = hash_hmac( 'sha256', $wp_user->user_email, $salt );

$props['id'] = $is_vip_user ? 'vip-' . $tracks_user_id : $tracks_user_id;
$props[ 'full_name' . $property_suffix ] = $wp_user->display_name;
$props[ 'role' . $property_suffix ] = $wp_user->roles[0];
$props['id'] = $is_vip_user ? 'vip-' . $tracks_user_id : $tracks_user_id;
$props['full_name'] = $wp_user->display_name;
$props[ 'role' . $property_suffix ] = $wp_user->roles[0];

return $props;
}

0 comments on commit f4f0b80

Please sign in to comment.