protected override async Task OnInitializedAsync()
 {
     if (CommunityId != null)
     {
         Companies = await CommunityService.GetCommunityCompanies(CommunityId);
     }
     else
     {
         Companies = await CommunityService.GetCompanies();
     }
 }