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>
)
}
