Skip to content

Commit

Permalink
routed a user away from the import users page onclicking the import b…
Browse files Browse the repository at this point in the history
…utton
  • Loading branch information
AllanOXDi committed Sep 28, 2023
1 parent 248d8b8 commit 39d0eb5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@
},
pollImportTask() {
// TO DO :: This has to be removed once the multiple user syncing has been fixed.
if (this.wizardService.state.context.importedUsers.length > 0) {
if (
this.learnersBeingImported.length > 0 ||
this.wizardService.state.context.importedUsers.length > 0
) {
this.wizardService.send('LOADING');
}
TaskResource.list({ queue: SoudQueue }).then(tasks => {
Expand Down

0 comments on commit 39d0eb5

Please sign in to comment.