Skip to content

Commit

Permalink
Fix color of block icon on block user button (#1693)
Browse files Browse the repository at this point in the history
  • Loading branch information
micahmo authored Feb 18, 2025
1 parent 1ce3be7 commit c4c3a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/user/widgets/user_sidebar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class BlockUserButton extends StatelessWidget {
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(blocked ? Icons.undo_rounded : Icons.block_rounded),
Icon(blocked ? Icons.undo_rounded : Icons.block_rounded, color: Colors.redAccent),
const SizedBox(width: 4.0),
Text(blocked ? 'Unblock User' : 'Block User'),
],
Expand Down

0 comments on commit c4c3a28

Please sign in to comment.