Element disappeared after adding new element to a box via Visual Editor or JSX editor

Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.

Builder content link

Builder public api key
ea8c8e416fd64171bc2ef9ac5ac226e6

What are you trying to accomplish
I need to add a link within a box on the website. Couldn’t do it via the visual editor, whevever I try to drag and drog a text box into a box, it doesn’t work. And then I tried to edit in JSX and it doesn’t work either.

Screenshots or video link

Code stack you are integrating Builder with
React

Reproducible code example

export default function MyComponent(props) {
  return (
    <div class="box-border flex relative flex-col shrink-0 mt-5 h-[200px]">
      <a
        href="url"
        class="box-border flex relative flex-col pt-5 pr-8 mx-auto mt-2.5 w-full h-auto cursor-pointer pointer-events-auto leading-[normal] max-w-[1180px] text-blue-50 text-opacity-60"
      >
        <p>Privacy Policy</p>
      </a>
      <a
        href="mailto:support@email.com"
        class="box-border flex relative flex-col pt-5 pr-8 mx-auto mt-2.5 w-full h-auto cursor-pointer pointer-events-auto leading-[normal] max-w-[1180px] text-blue-50 text-opacity-60"
      >
        <p>Support</p>
      </a>
    </div>
  );
}

Hey @lois I took a look at the page and it looks like the box was very small and so the pointer is currently just not sensitive enough to select dropping the text inside the box. If that is the case I often recommend dropping the text and then manually dragging and dropping it into its place in the Layer Tab so that it is perfectly in place.

If you increase the size of the box it is much easier to do as well

You can see here in this loom:

We will raise internal feedback to look into making the dropping within smaller boxes more easy to use.

I was also able to recreate on your space the text not immediately being visible, though sometimes it was, and I think it could be related to the timeout that happens sometimes on the page. It seems there is something lagging on your app… another thing I noticed is that you seem to be on an outadted version of our QWIK SDK, it looks like you are on something around 0.4 and the SDK is now on 0.14.26… I would recommend updating and seeing if that helps resolve any issues!