diff --git a/src/comissions.app.api/Controllers/SellerProfileController.cs b/src/comissions.app.api/Controllers/SellerProfileController.cs index a5b9ff0..d941d9c 100644 --- a/src/comissions.app.api/Controllers/SellerProfileController.cs +++ b/src/comissions.app.api/Controllers/SellerProfileController.cs @@ -97,7 +97,7 @@ public class SellerProfileController : Controller [HttpPut] [Authorize("write:seller-profile")] [Route("Page")] - public async Task UpdateSellerProfilePage(SellerProfilePageSettingsModel model) + public async Task UpdateSellerProfilePage([FromBody]SellerProfilePageSettingsModel model) { var userId = User.GetUserId(); var existingSellerProfile = await _dbContext.UserSellerProfiles.Include(x=>x.SellerProfilePageSettings).FirstOrDefaultAsync(sellerProfile=>sellerProfile.UserId==userId);