Skip to content

Commit

Permalink
Merge pull request #117 from infinitybase/staging
Browse files Browse the repository at this point in the history
fix: return
  • Loading branch information
guimroque authored Jun 13, 2024
2 parents 39f60a9 + 92f5fbe commit 4da073f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/modules/user/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class UserController {

//verify user exists
let existingUser = await this.userService.findByAddress(address);
if (existingUser) return successful(existingUser, Responses.Created);
// if (existingUser) return successful(existingUser, Responses.Created);

if (!existingUser) {
//verify name exists
Expand Down

0 comments on commit 4da073f

Please sign in to comment.