diff --git a/packages/neon/lib/src/apps/notifications/pages/main.dart b/packages/neon/lib/src/apps/notifications/pages/main.dart index b63efa75..820701fd 100644 --- a/packages/neon/lib/src/apps/notifications/pages/main.dart +++ b/packages/neon/lib/src/apps/notifications/pages/main.dart @@ -90,6 +90,9 @@ class _NotificationsMainPageState extends State { ), ), onTap: () async { + if (notification.app == 'notifications') { + return; + } final allAppImplementations = Provider.of>(context, listen: false); final matchingAppImplementations = allAppImplementations.where((final a) => a.id == notification.app); if (matchingAppImplementations.isNotEmpty) {