fix: removed uneeded input on the request seller profile endpoint

This commit is contained in:
Damien Ostler 2024-02-10 23:00:03 -05:00
parent 9e9f3c5564
commit f70b9b2b52

View File

@ -68,7 +68,7 @@ public class SellerProfileController : Controller
[HttpPost] [HttpPost]
[Authorize("write:seller-profile")] [Authorize("write:seller-profile")]
public async Task<IActionResult> RequestSellerProfile(SellerProfileModel model) public async Task<IActionResult> RequestSellerProfile()
{ {
var userId = User.GetUserId(); var userId = User.GetUserId();