Block Development: hamburger module throwing error in save function
This is because you’ve put interactive components inside your save component, which is forbidden. A save components job is to generate raw HTML strings that get saved in the database. It does this in the editor in javascript, save components never run on the frontend, and there is no way to “save” an interactive or … Read more