diff --git a/Elwig/Helpers/Validator.cs b/Elwig/Helpers/Validator.cs
index 5a6054b..7749748 100644
--- a/Elwig/Helpers/Validator.cs
+++ b/Elwig/Helpers/Validator.cs
@@ -589,11 +589,6 @@ namespace Elwig.Helpers {
return new(true, null);
}
- public static ValidationResult CheckGstNr(TextBox input, bool required) {
- // TODO
- return new(true, "Not implemented yet");
- }
-
public static ValidationResult CheckGradatoinOe(TextBox input, bool required) {
var res = CheckInteger(input, required, 3);
if (!res.IsValid) {
diff --git a/Elwig/Windows/AreaComAdminWindow.xaml b/Elwig/Windows/AreaComAdminWindow.xaml
index 3cc82fb..684c583 100644
--- a/Elwig/Windows/AreaComAdminWindow.xaml
+++ b/Elwig/Windows/AreaComAdminWindow.xaml
@@ -184,7 +184,7 @@
+ TextChanged="TextBox_TextChanged"/>