Removed a trailling debug value

This commit is contained in:
2025-05-16 00:06:48 +02:00
parent 6641254a5f
commit 84583de46e

View File

@@ -47,10 +47,12 @@ class InitScreen extends StatelessWidget {
Navigator.pushReplacementNamed(context, '/login'); Navigator.pushReplacementNamed(context, '/login');
}); });
} }
return Center( return const Center(
child: Text( child: Image(
(snapshot.data == true) ? "1" : "0" image: AssetImage("assets/images/42_logo.png"),
) width: 100,
height: 100,
),
); );
default: default:
Future.microtask(() { Future.microtask(() {