No content to show
User Activity
04-17-2024
I also have the same issue, I'm thinking on create multiples carrier service for the same app
02-24-2024
inspired for what I said before this is a change you can do in a fork of this shopify-app-remix where I exposed the shopify logger and use it as I want to logger.log(LogSeverity.Info, "App test log -------->"); if you want to use it, you can installa...
02-24-2024
actually I'm wrong, about exporting the logger, this is not exported from shopifyApp
02-23-2024
you should be able to set you logger through the shopify app initialization const shopify = shopifyApp({
...mySettings,
logger: {
level: process.env.VERCEL_ENV ? LogSeverity.Info : LogSeverity.Debug,
log: (level, message) => {
// Log to...
thanks, it really works
Have a good day everybody! I see useCheckout hook is available on `@Shopify/ui-extensions-react/checkout` but when I try to use it to grab the checkout token is not working, my app extension has already permissions for read_checkouts,write_checkouts,...