summaryrefslogtreecommitdiff
path: root/storefront/pages/_app.js
diff options
context:
space:
mode:
authorToshiro <toshiro@huitral.local>2026-02-01 03:17:06 +0100
committerToshiro <toshiro@huitral.local>2026-02-01 03:17:06 +0100
commit7579b72cba4248e1b33fae004a97c8513dfca005 (patch)
tree1f69e33aebbe880bcf52a48301a23e959ff20652 /storefront/pages/_app.js
parentb7c594e72b993340bc6b70a74643506e543d3a12 (diff)
parentbc6f65dc9afa29fbb94038b1cfd5cbee2d87719c (diff)
merge:resolve conflicts
Diffstat (limited to 'storefront/pages/_app.js')
-rw-r--r--storefront/pages/_app.js6
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>
)
}