Index: ChapterX.Application/AISuggestion/Commands/AddHandler.cs
===================================================================
--- ChapterX.Application/AISuggestion/Commands/AddHandler.cs	(revision e294f7d2cedd462a923c69ae9f85c996b5377c69)
+++ ChapterX.Application/AISuggestion/Commands/AddHandler.cs	(revision b62cefc14094ca5ac7154f7d48797a1e6c444935)
@@ -23,5 +23,5 @@
                 SuggestedText = request.SuggestedText,
                 StoryId = request.StoryId,
-                Accepted = false,
+                Accepted = null,
                 CreatedAt = DateTime.UtcNow
             };
Index: ChapterX.Application/AISuggestion/Commands/UpdateHandler.cs
===================================================================
--- ChapterX.Application/AISuggestion/Commands/UpdateHandler.cs	(revision e294f7d2cedd462a923c69ae9f85c996b5377c69)
+++ ChapterX.Application/AISuggestion/Commands/UpdateHandler.cs	(revision b62cefc14094ca5ac7154f7d48797a1e6c444935)
@@ -25,5 +25,5 @@
             suggestion.SuggestedText = request.SuggestedText;
             suggestion.Accepted = request.Accepted;
-            if (request.Accepted)
+            if (request.Accepted == true)
                 suggestion.AppliedAt = DateTime.UtcNow;
 
Index: ChapterX.Application/AISuggestion/Commands/UpdateRequest.cs
===================================================================
--- ChapterX.Application/AISuggestion/Commands/UpdateRequest.cs	(revision e294f7d2cedd462a923c69ae9f85c996b5377c69)
+++ ChapterX.Application/AISuggestion/Commands/UpdateRequest.cs	(revision b62cefc14094ca5ac7154f7d48797a1e6c444935)
@@ -7,5 +7,5 @@
         string OriginalText,
         string SuggestedText,
-        bool Accepted
+        bool? Accepted
     ) : IRequest<UpdateResponse>;
 }
