chore(repo): add missed trailing commas
This commit is contained in:
@@ -83,9 +83,12 @@ class HomeScreen extends StatelessWidget {
|
||||
channelListController: channelListController,
|
||||
filter: Filter.and([
|
||||
Filter.equal('type', 'messaging'),
|
||||
Filter.in_('members', [
|
||||
StreamChatCore.of(context).currentUser!.id,
|
||||
])
|
||||
Filter.in_(
|
||||
'members',
|
||||
[
|
||||
StreamChatCore.of(context).currentUser!.id,
|
||||
],
|
||||
)
|
||||
]),
|
||||
emptyBuilder: (BuildContext context) => const Center(
|
||||
child: Text('Looks like you are not in any channels'),
|
||||
@@ -318,10 +321,10 @@ class _MessageScreenState extends State<MessageScreen> {
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
),
|
||||
],
|
||||
),
|
||||
)
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user