diff --git a/sojorn_app/lib/screens/profile/viewable_profile_screen.dart b/sojorn_app/lib/screens/profile/viewable_profile_screen.dart index 3abae25..cf12244 100644 --- a/sojorn_app/lib/screens/profile/viewable_profile_screen.dart +++ b/sojorn_app/lib/screens/profile/viewable_profile_screen.dart @@ -477,13 +477,13 @@ class _UnifiedProfileScreenState extends ConsumerState } }); } else { - final status = await apiService.followUser(_profile!.id); + await apiService.followUser(_profile!.id); if (!mounted) return; setState(() { - _followStatus = status; - _isFollowing = status == 'accepted'; + _followStatus = 'accepted'; + _isFollowing = true; _isFriend = _isFollowing && _isFollowedBy; - if (_stats != null && _isFollowing) { + if (_stats != null) { _stats = ProfileStats( posts: _stats!.posts, followers: _stats!.followers + 1,