diff --git a/src/OnboardingSPA/components/App/index.js b/src/OnboardingSPA/components/App/index.js index 9c2e693a0..0bd68d32d 100644 --- a/src/OnboardingSPA/components/App/index.js +++ b/src/OnboardingSPA/components/App/index.js @@ -225,16 +225,18 @@ const App = () => { const platforms = Object.keys( socialMediaStoreToState( socialData ) - ).join( ',' ); - if ( platforms ) { - trackOnboardingEvent( - new OnboardingEvent( - ACTION_SOCIAL_ADDED, - platforms, - {}, - previousStepURL - ) - ); + ); + if ( platforms.length ) { + platforms.forEach( ( platform ) => { + trackOnboardingEvent( + new OnboardingEvent( + ACTION_SOCIAL_ADDED, + platform, + {}, + previousStepURL + ) + ); + } ); } }