From 97bb692812ac7482f07932b67cd40c60775ae53d Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Tue, 24 Nov 2020 17:55:23 +0100 Subject: [PATCH] fix: Broken dialog --- lib/components/dialogs/simple_dialogs.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/dialogs/simple_dialogs.dart b/lib/components/dialogs/simple_dialogs.dart index 05e3a9d4..640c9381 100644 --- a/lib/components/dialogs/simple_dialogs.dart +++ b/lib/components/dialogs/simple_dialogs.dart @@ -44,7 +44,7 @@ class SimpleDialogs { } catch (exception) { await FlushbarHelper.createError(message: exception.toString()) .show(context); - return false; } + return false; } }