@plasmicapp/react-web 0.2.129 → 0.2.130

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1417,7 +1417,7 @@ function renderPlasmicSlot(opts) {
1417
1417
  var maybeString = maybeAsString(content);
1418
1418
 
1419
1419
  if (maybeString) {
1420
- content = React.createElement("div", {
1420
+ content = React.createElement("span", {
1421
1421
  className: "__wab_slot-string-wrapper"
1422
1422
  }, maybeString);
1423
1423
  }
@@ -1432,7 +1432,7 @@ function renderPlasmicSlot(opts) {
1432
1432
  return React.createElement(React.Fragment, null, content);
1433
1433
  }
1434
1434
 
1435
- return React.createElement(as || "div", mergeProps({
1435
+ return React.createElement(as || "span", mergeProps({
1436
1436
  className: "__wab_slot"
1437
1437
  }, rest), content);
1438
1438
  }