Skip to content

Commit

Permalink
Merge pull request #370 from CirclesUBI/feature/app-429-profile-image…
Browse files Browse the repository at this point in the history
…-cannot-be-set-to-blank

fix Profile image cannot be set to blank
  • Loading branch information
dacianavram authored Jul 21, 2023
2 parents 159fdf9 + 10a32cc commit e2ccaab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell/src/dapps/o-passport/processes/upsertIdentity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const processDefinition = (processId: string) =>
navigation: {
next: "#location",
previous: "#lastName",
canSkip: () => true,
canSkip: () => false,
},
}),

Expand Down Expand Up @@ -212,7 +212,7 @@ const processDefinition = (processId: string) =>
field: {
name: "",
get: () => undefined,
set: (o: any) => {},
set: (o: any) => { },
},
}),
},
Expand Down

0 comments on commit e2ccaab

Please sign in to comment.