Embedded App Check Not Triggering

I want to send my application to review but this annoying issue stopping me
please help

Issue

Embedded app checks never triggered
I tried to

  • Logged in and interacted extensively with the app
  • Tested across 4 different development stores
  • Waited multiple 2-hour intervals

Environment

  • Framework: Remix + Polaris
  • Package Versions:
    • @remix-run/react: ^2.16.1
    • @shopify/app-bridge-react: ^4.2.4
    • @shopify/polaris: ^12.0.0
    • @shopify/shopify-app-remix: ^3.7.0

Implementation

App Bridge CDN script is properly loaded in root.jsx:

export default function App() {
  return (
    <html>
      <head>
        <meta charSet="utf-8" />
        <meta name="viewport" content="width=device-width,initial-scale=1" />
        <link rel="preconnect" href="https://cdn.shopify.com/" />
        <link rel="stylesheet" href="https://cdn.shopify.com/static/fonts/inter/v4/styles.css" />
        <meta name="shopify-api-key" content="[[APIKEY_HERE]]" />
        <script src="https://cdn.shopify.com/shopifycloud/app-bridge.js"></script>
        <Meta />
        <Links />
      </head>
      <body>
        <Outlet />
        <ScrollRestoration />
        <Scripts />
      </body>
    </html>
  )
}

@Liam-Shopify
please Liam if you can help

Hi @Rastova Did you managed solved it?

Run this application on Chrome or Safari instead of Firefox or Brave. I had the same issue, and switching to Safari solved it. Make sure you turn off all extensions as well before doing this.

I solved it the same way, it seems Shopify has tons of tracking going on the background, I always have to add a huge filter in firefox console to avoid seeing a new error message every 100 milliseconds

yes i solved it this way i used the application on a very new chrome browser without any extensions installed
Thank you for your response