This commit is contained in:
otsmr 2025-07-17 20:41:57 +02:00
parent 9115d5be74
commit f33aa673f8

View file

@ -162,11 +162,6 @@ class _AppMainWidgetState extends State<AppMainWidget> {
FutureBuilder<bool>( FutureBuilder<bool>(
future: userCreated, future: userCreated,
builder: (context, snapshot) { builder: (context, snapshot) {
return OnboardingView(
callbackOnSuccess: () => setState(() {
showOnboarding = false;
}),
);
if (!snapshot.hasData) { if (!snapshot.hasData) {
return Center(child: Container()); return Center(child: Container());
} else if (snapshot.data!) { } else if (snapshot.data!) {