Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
John Miller committed Aug 29, 2024
1 parent d40ffaa commit e781e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public Guid CustomerId

var customerId = accessor.HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier);

return customerId == null ? throw new ArgumentNullException("NameIdentifier not found with customer Id") : new(customerId);
return customerId == null ? throw new ArgumentNullException("NameIdentifier not found with customer Id.") : new(customerId);
}
}
}

0 comments on commit e781e6e

Please sign in to comment.