# :first-child console error

When we use one of the pseudo-classes :first-child, :nth-child(N) or :nth-last-child(N), we may get errors in the browser console like the following:

The pseudo class ":first-child" is potentially unsafe when doing server-side rendering.
The pseudo class ":nth-child(N)" is potentially unsafe when doing server-side rendering.
The pseudo class ":nth-last-child(N)" is potentially unsafe when doing server-side rendering.

There is nothing wrong with using these pseudo-classes. This issue is a warning for those who are using server-side rendering that these pseudo-classes might not work.

This issue is not from our template or MUI framework but rather it is from emotion's (opens new window) side. Please read this issue (opens new window) for further details.

Last Updated: 6/22/2023, 7:12:49 AM