remove useless print

This commit is contained in:
2024-10-23 15:07:57 +02:00
parent 750b323c80
commit c7c5a7e375

View File

@@ -35,7 +35,7 @@ class _AuthCheckState extends State<AuthCheck> {
return FutureBuilder(
future: doesSessionExist(),
builder: (context, snapshot) {
print(snapshot.data);
//print(snapshot.data);
if (snapshot.data == true) {
return const MIHProfileGetter();
} else if (snapshot.data == false) {