\n {({ loading, data }) => {\n if (\n loading || \n !data || \n data?.currentShop?.getEveyAppReview == \"unavailable\" ||\n data?.currentShop?.getEveyAppReview == \"completed\" ||\n data?.currentShop?.getEveyAppReview == \"dismissed\"\n ) return '';\n\n const shop = data.currentShop;\n\n return (\n \n {\n updateReview({ variables: { email: shop?.email, domain: shop?.domain, value: \"completed\" } });\n },\n }}\n secondaryAction={{\n content: 'Dismiss',\n onAction: () => {\n updateReview({ variables: { email: shop?.email, domain: shop?.domain, value: \"dismissed\" } });\n },\n }}\n >\n \n Share your experience and make an impact!\n \n \n
\n );\n }}\n \n );\n};\n\nexport default ReviewAppBanner;\n","import React from \"react\";\nimport { Page, Navigation, Banner } from \"@shopify/polaris\";\nimport { TitleBar } from \"@shopify/app-bridge-react\";\nimport {\n RoutePropagator as AppBridgeRoutePropagator,\n ClientRouter,\n} from \"@shopify/app-bridge-react\";\nimport { useHistory, useLocation } from \"react-router-dom\";\nimport TrialBanner from \"../Trial/TrialBanner\";\nimport AccessScopeBanner from \"../AccessScope/AccessScopeBanner\";\nimport KlaviyoKeyBanner from \"../Klaviyo/KlaviyoKeyBanner\";\nimport { useFrame } from \"../../contexts/frame\";\nimport ReviewAppBanner from \"../ReviewApp/ReviewAppBanner\";\n\nconst AppPage = ({\n children,\n pageTitle,\n pageSubtitle,\n fullWidth,\n title,\n breadcrumbs,\n primaryAction,\n secondaryActions,\n actionGroups,\n hideTrialBanner,\n hideAccessScopeBanner,\n hideKlaviyoKeyBanner\n}) => {\n const history = useHistory();\n const location = useLocation();\n\n const { isExternal } = useFrame();\n\n const pageProps = !isExternal\n ? {\n title: pageTitle || null,\n subtitle: pageSubtitle || null,\n fullWidth: fullWidth || false,\n }\n : {\n title: title || null,\n subtitle: pageSubtitle || null,\n fullWidth: fullWidth || false,\n // breadcrumbs: breadcrumbs || [],\n primaryAction,\n secondaryActions: secondaryActions || [],\n actionGroups: actionGroups || [],\n };\n\n return (\n