fix: improve readability by adding braces for conditional statement in profile page state

Changed files
+3 -1
lib
+3 -1
lib/screens/profile_page.dart
··· 47 if (!mounted) return; 48 if (success) { 49 Navigator.of(context).pop(); 50 - if (mounted) setState(() {}); // Force widget rebuild after modal closes 51 } else { 52 if (!mounted) return; 53 ScaffoldMessenger.of(
··· 47 if (!mounted) return; 48 if (success) { 49 Navigator.of(context).pop(); 50 + if (mounted) { 51 + setState(() {}); // Force widget rebuild after modal closes 52 + } 53 } else { 54 if (!mounted) return; 55 ScaffoldMessenger.of(