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
When routing to components, the constructed templates are prefixed with "x-". As such, stylings that rely on component names break. I.e: my-component { color: red; } won't apply to <my-component /> because it's been renamed to <x-my-component />.
Expected Behavior:
The component should not be renamed so that styles apply as expected.