fix: Chat UI doesnt load
This commit is contained in:
parent
0cc794f03b
commit
67cd60e87c
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ class ChatUI extends StatelessWidget {
|
|||
child: FutureBuilder<bool>(
|
||||
future: controller.getTimeline(),
|
||||
builder: (BuildContext context, snapshot) {
|
||||
if (!snapshot.hasData) {
|
||||
if (controller.timeline == null) {
|
||||
return Center(
|
||||
child: CircularProgressIndicator(),
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue