no need for two condtions inside themselves

This commit is contained in:
raf-dev1
2025-06-23 16:16:34 +03:00
parent 379ecec789
commit d14cc785a8

View File

@ -467,11 +467,9 @@ class UsersPage extends StatelessWidget {
return EditUserDialog(user: user);
},
).then((v) {
if (v != null) {
if (v != null) {
_blocRole.add(const GetUsers());
}
}
});
},
)