We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2437100 commit 253a83cCopy full SHA for 253a83c
lib/main.dart
@@ -70,7 +70,8 @@ void main() async {
70
// 6. Preferences Repository (Added)
71
// IMPORTANT: This assumes currentUser is immediately available after auth repo init.
72
// If not, initialization might need to be deferred or handled differently.
73
- final currentUserId = authenticationRepository.currentUser.uid; // Assuming 'uid' property
+ final currentUserId =
74
+ authenticationRepository.currentUser.uid; // Assuming 'uid' property
75
// Firestore typically requires non-empty document IDs.
76
// Handle cases where the user might be anonymous or ID is empty.
77
if (currentUserId.isEmpty) {
0 commit comments