diff --git a/lib/views/profilemgrview.dart b/lib/views/profilemgrview.dart index 4a7ec63..f075eb2 100644 --- a/lib/views/profilemgrview.dart +++ b/lib/views/profilemgrview.dart @@ -105,8 +105,8 @@ class _ProfileMgrViewState extends State { Widget _buildProfileManager() { final tiles = Provider.of(context).onions.map( (ProfileInfoState profile) { - return ChangeNotifierProvider( - create: (context) => profile, + return ChangeNotifierProvider.value( + value: profile, builder: (context, child) => ProfileRow(), ); },