remove useless parentheses

This commit is contained in:
krawieck 2020-10-06 16:29:19 +02:00
parent 8cafde3ba4
commit 98557f9220
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ class InfiniteHomeList extends HookWidget {
limit: limit,
auth: accStore.defaultTokenFor(instanceUrl)?.raw,
));
final posts = (await Future.wait(futures));
final posts = await Future.wait(futures);
final newPosts = <PostView>[];
for (final i
in Iterable.generate(posts.map((e) => e.length).reduce(max))) {