I started with the remix template provided by Shopify, I am adding a simple “action” in my app._index.jsx file:
export async function action({ request }) {
return redirect(“/app/go_there”)
);
};
then here I have a button:
export default function Index() {
return (
I have tried so many variations, but I keep getting this error when I pressed the button:
I am going nuts… any idea? thanks
