Skip to content

Commit

Permalink
fix(#154): fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyHers committed Oct 31, 2023
1 parent ba595a7 commit 4c7c9b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/services/database.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ class FireStoreDatabase implements Database {
subject: EmailConstants.subject,
text: EmailConstants.text,
html: EmailConstants.html(
auth.currentUser!.displayName ?? auth.currentUser!.email!),
auth.currentUser!.displayName ?? auth.currentUser!.email!,
),
),
).then((value) => auth.setFirstLogin(isFirstLogin: false));
}
Expand Down
2 changes: 0 additions & 2 deletions lib/services/firestore_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_storage/firebase_storage.dart';
import 'package:flutter/foundation.dart';
import 'package:times_up_flutter/models/notification_model/notification_model.dart';

import 'package:times_up_flutter/widgets/show_logger.dart';

typedef QueryBuilder<T> = T Function(Map<String, dynamic> data);
Expand Down

0 comments on commit 4c7c9b1

Please sign in to comment.