@trops/dash-core 0.1.379 → 0.1.380

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.
package/dist/index.esm.js CHANGED
@@ -56594,6 +56594,13 @@ var MessageBubble = function MessageBubble(_ref2) {
56594
56594
  textParts.push(content);
56595
56595
  }
56596
56596
  var _text = textParts.join("");
56597
+
56598
+ // Hide empty assistant bubbles (e.g., tool-use-only responses from
56599
+ // the CLI backend where content is [] and tool calls are tracked
56600
+ // separately). Nothing useful to show the user.
56601
+ if (!isStreaming && !_text && toolBlocks.length === 0) {
56602
+ return null;
56603
+ }
56597
56604
  return /*#__PURE__*/jsxs("div", {
56598
56605
  className: "mb-4",
56599
56606
  children: [/*#__PURE__*/jsx("div", {