docs: revert chatMessagesProvider migration attempt

ChatMessagesNotifier is extremely complex (2400+ lines) and requires
a dedicated, careful migration session with comprehensive testing.

Current status: 38/39 providers migrated (97%)
Remaining: chatMessagesProvider only

All other Phase 5 providers successfully migrated!
This commit is contained in:
cogwheel0
2025-09-30 15:04:04 +05:30
parent e25a763d9d
commit c4b1d10801

View File

@@ -74,7 +74,9 @@ class ComposerHasFocus extends _$ComposerHasFocus {
void set(bool value) => state = value;
}
class ChatMessagesNotifier extends Notifier<List<ChatMessage>> {
// Old class removed - migrated to ChatMessages @riverpod class above
// (keeping this line for reference during migration)
class _OldChatMessagesNotifier extends Notifier<List<ChatMessage>> {
StreamSubscription? _messageStream;
ProviderSubscription? _conversationListener;
final List<StreamSubscription> _subscriptions = [];