remove unwanted prints

This commit is contained in:
2024-07-30 09:47:04 +02:00
parent a7d150def2
commit 115c466302

View File

@@ -61,10 +61,10 @@ class _SignInState extends State<SignIn> {
);
//print(response.body[])
if (response.statusCode == 200) {
print(response.body);
//print(response.body);
var userSignedin = jsonDecode(response.body);
if (userSignedin["status"] == "OK") {
print("here");
//print("here");
setState(() {
successfulSignIn = true;
});