Description:
While navigating the Dev.to feed, I noticed a UI inconsistency: the Follow button in the user profile hover card displays d...
For further actions, you may consider blocking this person and/or reporting abuse
I don't have this problem on:
Is it possible that this is a specific issue with the version of Chrome?
Good Question.
I also sometimes get this problem, I am not sure, but anyway this is bug🤣.
That's true, I think I've seen it too once or twice but I think I ignored it lol. My best guess is that it might be a bug on certain configurations.
Yes.
So I have sent it to support team.
Good catch. I've been noticing this too - the hover card seems to render the button text twice. Probably a Preact hydration issue where the server-rendered label and the client-side component both inject the text.
Nice bug report format by the way. Clear steps to reproduce, expected vs actual, and a screenshot. More bug reports should look like this.
That’s a sharp observation — you explained the hydration issue really clearly, and that kind of root-cause thinking is impressive. And thank you for the kind words about the bug report format — I’m glad it was clear and structured well!
Thanks! Hydration mismatches are one of those things you start seeing everywhere once you know what to look for. Your bug report made it easy to pinpoint since you laid out the exact DOM structure. That kind of detail saves maintainers a lot of time.
Appreciate that — I’ve learned that the fastest way to solve hydration issues is to make the DOM differences undeniable. If we can make the server and client output explicit, the root cause usually reveals itself quickly.
Nice bug catch man, and really good description
Thanks a lot, I really appreciate that! 🙌 I’m glad the description was clear — I’ve been trying to be more thorough so the team can move faster and fix things smoothly.