Skip to content

Commit

Permalink
Update nullable strings to regular strings
Browse files Browse the repository at this point in the history
  • Loading branch information
nwarms committed Dec 19, 2024
1 parent 0b2738e commit f7a74bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public interface IOtherServicesLinkBuilder
string? FindSchoolPerformanceDataListingLink(string uid, TrustType trustType, string? satAcademyUrn);
string GetInformationAboutSchoolsListingLinkForTrust(string trustUid);
string GetInformationAboutSchoolsListingLinkForAcademy(string urn);
string? SharepointFolderLink(string groupId);
string SharepointFolderLink(string groupId);

string? FinancialBenchmarkingInsightsToolListingLink(string? companiesHouseNumber);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class TrustDetailsModel(
public string? GetInformationAboutSchoolsLink { get; set; }
public string? FinancialBenchmarkingInsightsToolLink { get; set; }
public string? FindSchoolPerformanceLink { get; set; }
public string? SharepointLink { get; set; }
public string SharepointLink { get; set; } = string.Empty;

public override async Task<IActionResult> OnGetAsync()
{
Expand Down

0 comments on commit f7a74bb

Please sign in to comment.