Skip to content

Commit

Permalink
format files
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sidhdhi-p committed Dec 24, 2024
1 parent 93e559a commit 6bb8427
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion data/lib/service/team/team_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ class TeamService {
.where(
FireStoreConst.nameLowercase,
isLessThan: '${searchKey.caseAndSpaceInsensitive}z',
).orderBy(FireStoreConst.id);
)
.orderBy(FireStoreConst.id);

if (lastTeamId != null && lastTeamId.isNotEmpty) {
query = query.startAfter([lastTeamId]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class UserDetailSheet extends StatelessWidget {
BuildContext context,
UserModel user, {
String? actionButtonTitle,
VoidCallback? onButtonTap,
VoidCallback? onButtonTap,
}) {
HapticFeedback.mediumImpact();
return showModalBottomSheet(
Expand Down

0 comments on commit 6bb8427

Please sign in to comment.