#Error: Hydration failed because the initial UI does not match what was rendered on the server.

8 messages · Page 1 of 1 (latest)

wet forge
#

I do understand why this error occured, it's because of this part:

        <p className="text-xl text-white px-6 py-4 w-[45%]">
          A dedicated{" "}
          <Tooltip tooltip="My cool tooltip!">
            <span className="text-primary">programmer</span>
          </Tooltip>{" "}
          with a penchant for turning ideas into reality through elegant lines
          of code. Embracing challenges and seeking innovative solutions in the
          ever-evolving landscape of technology.
        </p>

In here, there's a Tooltip tag inside a p tag, and the tooltip tag contains divs:

  return (
    <div onMouseEnter={({ clientX }) => ...>
      <span
        ref={tooltipRef}
        className="..."
      >
        {tooltip}
      </span>
      {children}
    </div>
  );

Now, how do I make it work?

honest iglooBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

bleak arch
wet forge
honest iglooBOT
#
✅ Success!

This question has been marked as answered! If you have any other questions, feel free to create another post

Jump to answer
#
✅ Success!

This question has been marked as answered! If you have any other questions, feel free to create another post

Jump to answer
wet forge
#

oh

bleak arch
#

Np, glad it helped