diff --git a/src/App/Utilities/InverseBoolConverter.cs b/src/App/Utilities/InverseBoolConverter.cs index d5affc66e..439bbb7f7 100644 --- a/src/App/Utilities/InverseBoolConverter.cs +++ b/src/App/Utilities/InverseBoolConverter.cs @@ -9,10 +9,6 @@ namespace Bit.App.Utilities System.Globalization.CultureInfo culture) { if(targetType == typeof(bool)) - { - return !(bool)value; - } - if(targetType == typeof(bool?)) { return !((bool?)value).GetValueOrDefault(); }