From fe56bd903d7a3c185b3065aa1ad70a4cf283da95 Mon Sep 17 00:00:00 2001 From: Ryan Peters Date: Thu, 25 Jan 2024 20:11:39 -0500 Subject: [PATCH] make non nullable --- NoteHub.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NoteHub.cs b/NoteHub.cs index 50d615a..44a9972 100644 --- a/NoteHub.cs +++ b/NoteHub.cs @@ -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);