Questions and discussions about using the Shopify CLI and Shopify-built libraries.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I want to show my app URL's in my embedded app itself .However on the initial installation of my app it loads the page externally and not inside an iframe and i also load certain external site pages in the iframe .However these pages have a submit button and once it gets submitted it loads externally .How can i make the app load all content in embedded app itself instead showing it externally.
https://stackoverflow.com/questions/72627468/load-confirmation-url-in-embedded-app-itself-in-shopify
import { Heading, Page, TextStyle, Layout, EmptyState, Card } from "@shopify/polaris";import App from "next/app";const Index = () => (<Page><Layout><Layout.Section><Card sectioned><EmptyStateheading=""action={{content: "Next",external: false,}}image={image}imageContained={true}className="imagewrapper"><h1 className="tophead">Welcome to <span className="abctxt">ABC!</span></h1></EmptyState></Card></Layout.Section></Layout></Page>);export default Index;