No content to show
User Activity
Once the form is submitted it seems we have access to some extra stuff inside the form object. Simply do a dump of `{{ form | json }}` inside the form and you will get something like this:FORM JSON: {"posted_successfully?":false,"errors":null,"tags":...
Thank you for taking the time and actually post your solution. It helped me figure out how I need to handle deep nesting with metaobjects.
08-05-2024
@JohnGeigerI am not sure if this will help you, but what I ended up doing, is to make use of useBuyerJourneyIntercept and then set a state for an error message, something like this:useBuyerJourneyIntercept((canBlockProgress) => { if (canBlockPro...
If you still want to use the jsx/tsx files, you will need to add the extension to files when importing them. Example:You create a new component, `Example.jsx`You import this component inside `Checkout.jsx` as `import Example from "./components/Exampl...
@ryan99 @AJI @@Have you found any solution on this one?
07-19-2024
Hello @LuckyLuc ! did you ever managed to find a solution for this? Maybe @Liam can help us? Thanks
And why was that a "mistake/typo"? is there somewhere in the docs specified we should not use the jsx/tsx extension for nested components? I couldn't find anything related to it