make non nullable

This commit is contained in:
Ryan Peters 2024-01-25 20:11:39 -05:00
parent 6563838738
commit fe56bd903d

View File

@ -23,7 +23,7 @@ namespace BinaryDad.Notes
return base.OnConnectedAsync();
}
public async Task SaveNote(string content, string? noteName)
public async Task SaveNote(string content, string noteName)
{
noteService.SaveText(content, noteName);