remove useless print
This commit is contained in:
parent
750b323c80
commit
c7c5a7e375
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ class _AuthCheckState extends State<AuthCheck> {
|
||||||
return FutureBuilder(
|
return FutureBuilder(
|
||||||
future: doesSessionExist(),
|
future: doesSessionExist(),
|
||||||
builder: (context, snapshot) {
|
builder: (context, snapshot) {
|
||||||
print(snapshot.data);
|
//print(snapshot.data);
|
||||||
if (snapshot.data == true) {
|
if (snapshot.data == true) {
|
||||||
return const MIHProfileGetter();
|
return const MIHProfileGetter();
|
||||||
} else if (snapshot.data == false) {
|
} else if (snapshot.data == false) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue