Skip to content

Commit

Permalink
fix: remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-kreios committed Jan 8, 2025
1 parent 8cc7e8e commit 9cdeb4f
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ class _FollowingUserListItem extends ConsumerWidget {

@override
Widget build(BuildContext context, WidgetRef ref) {
print('pubkey: $pubkey');
final user = ref.watch(userMetadataProvider(pubkey)).valueOrNull;
final isSelected = selectedPubkeys?.contains(pubkey) ?? false;
print(selectedPubkeys);
return ListItem.user(
onTap: () => onUserSelected(user!),
title: Text(user?.data.displayName ?? ''),
Expand Down

0 comments on commit 9cdeb4f

Please sign in to comment.