Stripe Connect – I see private transactions from connected account in my main Stripe account

I have a marketplace website with a Stripe account for processing payments. I have a number of suppliers and I have set them up using Stripe connect. After payment, the appropriate amounts are sent to the suppliers connected stripe accounts and I take a fee, sent to my main Stripe account.

The problem I have is that in my dashboard in Stripe.com when looking at my suppliers connected accounts I can see ALL of their transactions, not just the ones related to sales on my website. If they make a payment or receive money outside of my website I can see that in my Stripe.com dashboard.

The Connection (PHP)

$response = StripeOAuth::token( [
            'grant_type' => 'authorization_code',
            'code'       => $code,
        ] );

We are ready to go live with this site and obviously cant do so with this issue.

I am unable to find the related documentation on the stripe website. Can anyone let me know how to restrict my view to only see transactions from connected accounts that happen on my website?