daita-technologies / interface

React-based user interface for the DAITA platform.
http://app.daita.tech
GNU Affero General Public License v3.0
1 stars 0 forks source link

fix: show confirm split automatically when user haven't config yet #186

Closed locpnh1995 closed 2 years ago

pcaversaccio commented 2 years ago

This PR removes a redundancy wrt to user notification in case the split has not yet been configured. The condition checked and removed now is already part of the following workflow:

if (listMethod) {
  if (splitDataNumberBySource) {
    callRunAugmentation(splitDataNumberBySource);
  } else {
    runOpenConfirmDialog();
  }
}