Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeastham1993 committed Sep 16, 2024
1 parent 2a303b5 commit d3ff91d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public async Task<UserAccount> CreateAccount(UserAccount userAccount)
var queryBuilder = Builders<UserAccount>.Filter.Eq(p => p.EmailAddress, userAccount.EmailAddress);

var existingAccount = await this._accounts.Find(queryBuilder).FirstOrDefaultAsync().ConfigureAwait(false);
nn
if (existingAccount is not null)
{
throw new UserExistsException();
Expand Down

0 comments on commit d3ff91d

Please sign in to comment.