diff --git a/lib/src/pages/artist_detail_page.dart b/lib/src/pages/artist_detail_page.dart index dc70fa60..fc38fc0c 100644 --- a/lib/src/pages/artist_detail_page.dart +++ b/lib/src/pages/artist_detail_page.dart @@ -294,11 +294,13 @@ class ArtistDetailPageView extends StatelessWidget { ), ), ), - Visibility( - visible: controller.artist().webLinks != null && - controller.artist().webLinks.isNotEmpty, - child: WebLinkGroupList( - webLinks: controller.artist().webLinks ?? [])) + Obx( + () => Visibility( + visible: controller.artist().webLinks != null && + controller.artist().webLinks.isNotEmpty, + child: WebLinkGroupList( + webLinks: controller.artist().webLinks ?? [])), + ) ], ) ]))