fixed guardian login edge cases and misleading placeholders on failed loads

This commit is contained in:
2026-09-20 19:03:45 +02:00
parent 2423c1a75e
commit 630497abdd
23 changed files with 299 additions and 72 deletions
@@ -10,7 +10,7 @@ class ChildSelectionCubit extends HydratedCubit<String?> {
void select(String childId) => emit(childId);
Future<void> reset() async => emit(null);
void reset() => emit(null);
@override
String? fromJson(Map<String, dynamic> json) => json['childId'] as String?;