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