diff options
| author | Toshiro <toshiro@huitral.local> | 2026-02-01 03:17:06 +0100 |
|---|---|---|
| committer | Toshiro <toshiro@huitral.local> | 2026-02-01 03:17:06 +0100 |
| commit | 7579b72cba4248e1b33fae004a97c8513dfca005 (patch) | |
| tree | 1f69e33aebbe880bcf52a48301a23e959ff20652 /storefront/pages/_app.js | |
| parent | b7c594e72b993340bc6b70a74643506e543d3a12 (diff) | |
| parent | bc6f65dc9afa29fbb94038b1cfd5cbee2d87719c (diff) | |
merge:resolve conflicts
Diffstat (limited to 'storefront/pages/_app.js')
| -rw-r--r-- | storefront/pages/_app.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/storefront/pages/_app.js b/storefront/pages/_app.js index 3737ae7..1513a72 100644 --- a/storefront/pages/_app.js +++ b/storefront/pages/_app.js @@ -1,6 +1,6 @@ import { MedusaProvider } from "medusa-react"
import { QueryClient } from "@tanstack/react-query"
-import { medusaClient } from "../lib/medusa-client"
+import Layout from "../components/Layout"
const queryClient = new QueryClient()
@@ -12,7 +12,9 @@ export default function App({ Component, pageProps }) { process.env.NEXT_PUBLIC_MEDUSA_BACKEND_URL || "http://localhost:9000"
}
>
- <Component {...pageProps} />
+ <Layout>
+ <Component {...pageProps} />
+ </Layout>
</MedusaProvider>
)
}
|
