odaptos_design_system 2.0.20 → 2.0.22

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.
@@ -11930,7 +11930,8 @@ const SelfProtocolManager = ({
11930
11930
  ctaText: texts.nextTaskCTA,
11931
11931
  buttonIcon: /*#__PURE__*/React__default.createElement(SendIcon, null),
11932
11932
  onClick: () => sendTask(task),
11933
- isDisabled: getIsTaskDisabled(task)
11933
+ isDisabled: getIsTaskDisabled(task),
11934
+ isDisplay: true
11934
11935
  });
11935
11936
  } else if (task.type === 'scenario') {
11936
11937
  return /*#__PURE__*/React__default.createElement(SelfProtocolTaskContainer, {
@@ -11940,7 +11941,7 @@ const SelfProtocolManager = ({
11940
11941
  description: task.description,
11941
11942
  ctaText: task.index === 1 ? texts.startNowCTA : texts.sendScenarioCTA,
11942
11943
  buttonIcon: /*#__PURE__*/React__default.createElement(SendIcon, null),
11943
- buttonId: task.index === 1 ? 'start_scenario' : '',
11944
+ buttonId: 'start_scenario',
11944
11945
  onClick: task.index === 1 ? () => startInterview(task) : () => sendTask(task),
11945
11946
  isDisplay: task.isDisplay,
11946
11947
  isDisabled: getIsTaskDisabled(task) || !isUserSharingScreen