How do I get rid of this old leftover in my MacroConfig display?

I have a MacroConfig that displays like this:
Screenshot 2023-03-24 at 13.01.23
The “BLA.” phrase I added there at one time when I was creating a skeleton. But now the code looks like this:

const DL_DependencyList_Config = () => {
  const context = useProductContext();
  const [availableDesigns] = useState(async () => await dictOfAvailableDesigns(context.spaceKey, context.contentId));
  return (
    <MacroConfig>
      <Select name="selected" label="This page depends on" isMulti="true">
      {Object.entries(availableDesigns).map(([dlid,dictValue]) => {
          return (
            <Option label={`${dictValue}`} value={dlid} />
          )
        })
      }
      </Select>
    </MacroConfig>
  );
};

No “BLA.” anywhere. Where does it come from now and how do I get rid of it?

Found it. It was in de description in manifest.yml

3 Likes