Skip to content

Commit 253a83c

Browse files
committed
style: misc fix
1 parent 2437100 commit 253a83c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/main.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ void main() async {
7070
// 6. Preferences Repository (Added)
7171
// IMPORTANT: This assumes currentUser is immediately available after auth repo init.
7272
// If not, initialization might need to be deferred or handled differently.
73-
final currentUserId = authenticationRepository.currentUser.uid; // Assuming 'uid' property
73+
final currentUserId =
74+
authenticationRepository.currentUser.uid; // Assuming 'uid' property
7475
// Firestore typically requires non-empty document IDs.
7576
// Handle cases where the user might be anonymous or ID is empty.
7677
if (currentUserId.isEmpty) {

0 commit comments

Comments
 (0)