Skip to content

Commit

Permalink
ISSUE #000 fix: LED IMP flow issue fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwanath committed Nov 3, 2023
1 parent dbcce98 commit 174832f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/manage-learn/core/services/project.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ export class ProjectService {
this.loader.startLoader();
let payload = isProfileInfoRequired ? await this.utils.getProfileInfo() : {};
const url = `${projectId ? '/' + projectId : ''}?${templateId ? 'templateId=' + encodeURIComponent(templateId) : ''}${solutionId ? ('&&solutionId=' + solutionId) : ''}`;
if(detailsPayload && isProfileInfoRequired){
detailsPayload = {detailsPayload, ...payload}
}
const config = {
url: urlConstants.API_URLS.GET_PROJECT + url,
payload: detailsPayload ? detailsPayload : payload
Expand Down

0 comments on commit 174832f

Please sign in to comment.