odaptos_design_system 1.4.203 → 1.4.205

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.
@@ -9603,7 +9603,8 @@ const Chat = ({
9603
9603
  description: welcomeDescription
9604
9604
  }), /*#__PURE__*/React__default.createElement("div", {
9605
9605
  ref: containerRef,
9606
- className: `${styles$d.tasks_container} ${styles$d.no_scrollbar} ${customScrollingClassname}`
9606
+ className: `${styles$d.tasks_container}
9607
+ ${customScrollingClassname}`
9607
9608
  }, isTaskMode ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, tasks.map(task => {
9608
9609
  if (task.type === 'question' || task.type === 'task' || task.type === 'scenario' && isInterviewer) {
9609
9610
  const realTask = isInterviewer ? task : JSON.parse(task.body);
@@ -9625,7 +9626,6 @@ const Chat = ({
9625
9626
  });
9626
9627
  } else if (task.type === 'scenario' && !isInterviewer) {
9627
9628
  const scenario = isInterviewer ? task : JSON.parse(task.body);
9628
- console.log('scenario', scenario);
9629
9629
  return /*#__PURE__*/React__default.createElement(Scenario, {
9630
9630
  title: `Scenario #${scenario.index}`,
9631
9631
  description: scenario.description,