You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you go to https://www.gatsbyjs.org/starters/?v=2 and start searching (the input field for searching starters, not the main search), you will get a blank page.
Steps to reproduce
see above
Expected result
You should see filtered results based on the input value.
Actual result
Page breaks and renders nothing.
Environment
Gatsby website, the starters page.
The error message that I get is
TypeError: Cannot read property 'toLowerCase' of undefined
at filtered-starters.js:86
The `starters` array used to be an array of edges and is "now" an array of nodes so accessing `.node` is no longer necessary. So dropping the access should make it work again.
Fixes#21942
Bug was introduced by #21792
Description
If you go to https://www.gatsbyjs.org/starters/?v=2 and start searching (the input field for searching starters, not the main search), you will get a blank page.
Steps to reproduce
see above
Expected result
You should see filtered results based on the input value.
Actual result
Page breaks and renders nothing.
Environment
Gatsby website, the starters page.
The error message that I get is
which is here
gatsby/www/src/views/starter-library/filtered-starters.js
Line 86 in 5baaa0f
if I'm not mistaken.
The text was updated successfully, but these errors were encountered: