Results 115 comments of Scott Rod

I don't know if this is related, but I get: `[getStaticPaths] invalid path param: uri. undefined expected for an optional param, but got empty string.` with Astro 2.10.9 and @astrojs/node...

I added more validation on server-side so the form wouldn't be submitted with empty fields. But, was curious why errors were being logged to the browser upon submission. Most likely,...

It looks like maybe my posts collection doesn't meet a required field somewhere because this returns just fine: ``` { posts.map(post => { return( {post.title} ) }) } ```

@JEverhart383 On https://github.com/JEverhart383/astro-wordpress-starter/blob/main/src/components/PostCard.astro#L19 Please make this optional in case the post doesn't have any attached categories. I'm not 100%, but should be: ```jsx { post.categories?.nodes?.map(category => { return ({category.name}) })}...

Also on the `Archive.astro` template, I had to modify my code, otherwise project wouldn't build. I am using FakerPress, so I can't really confirm what might be missing in this...

@stephanbogner Can you post a Stackblitz or similar with this working? From my experience, inline markdown images are not being transformed by astro imagetools in either `.md` or `.mdx` files,...

Thank @ai for the explanation.

@ziemkowski That's pretty much what I ended up doing.