Make _loadList async to make it satisfy the refresh listener
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2020-06-16 16:15:20 +02:00
parent 7bd340f45c
commit ac2d9722e9
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class _ListPageState extends State<ListPage> {
));
}
Future<void> _loadList() {
Future<void> _loadList() async {
_loadTasksForPage(1);
}