diff --git a/lib/features/chat/providers/chat_providers.dart b/lib/features/chat/providers/chat_providers.dart index db91bf3..f16b9c9 100644 --- a/lib/features/chat/providers/chat_providers.dart +++ b/lib/features/chat/providers/chat_providers.dart @@ -74,9 +74,8 @@ class ComposerHasFocus extends _$ComposerHasFocus { void set(bool value) => state = value; } -// Old class removed - migrated to ChatMessages @riverpod class above -// (keeping this line for reference during migration) -class _OldChatMessagesNotifier extends Notifier> { +// Chat messages notifier class +class ChatMessagesNotifier extends Notifier> { StreamSubscription? _messageStream; ProviderSubscription? _conversationListener; final List _subscriptions = [];