Skip to content

Commit

Permalink
Fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gandiddi committed Apr 6, 2024
1 parent 07d3fea commit 2b883a0
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ class UserProfileDialog extends ComponentDialog {
let msg = 'Thanks.';
if (step.result) {
msg += ' Your profile saved successfully.';
}
else{
} else {
msg += ' Your profile will not be kept.';
}

Expand All @@ -144,7 +143,7 @@ class UserProfileDialog extends ComponentDialog {

async summaryStep(step) {
step.values.picture = step.result && step.result[0];

// Get the current profile object from user state.
const userProfile = await this.userProfile.get(step.context, new UserProfile());

Expand Down

0 comments on commit 2b883a0

Please sign in to comment.