minor fix

This commit is contained in:
Vishesh Handa
2021-05-18 10:51:51 +02:00
parent 5a40d35ec8
commit 43fca1e4f4

View File

@ -90,7 +90,7 @@ class _DebugScreenState extends State<DebugScreen> {
var appSettings = Provider.of<AppSettings>(context);
var filterLevel = appSettings.debugLogLevel;
if (filterLevel == null || filterLevel.isEmpty) {
if (filterLevel.isEmpty) {
return true;
}