mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-05-09 17:55:13 -04:00
debugging
This commit is contained in:
parent
f780a60d69
commit
0e4606f35e
20 changed files with 521 additions and 321 deletions
|
@ -31,7 +31,7 @@ class HomeAccountReadyChatState extends State<HomeAccountReadyChat> {
|
|||
final activeChatLocalConversationKey =
|
||||
context.watch<ActiveChatCubit>().state;
|
||||
if (activeChatLocalConversationKey == null) {
|
||||
return const EmptyChatWidget();
|
||||
return const NoConversationWidget();
|
||||
}
|
||||
return ChatComponent.builder(
|
||||
localConversationRecordKey: activeChatLocalConversationKey);
|
||||
|
|
|
@ -69,7 +69,7 @@ class _HomeAccountReadyMainState extends State<HomeAccountReadyMain> {
|
|||
final activeChatLocalConversationKey =
|
||||
context.watch<ActiveChatCubit>().state;
|
||||
if (activeChatLocalConversationKey == null) {
|
||||
return const EmptyChatWidget();
|
||||
return const NoConversationWidget();
|
||||
}
|
||||
return ChatComponent.builder(
|
||||
localConversationRecordKey: activeChatLocalConversationKey);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue