Remove dismiss button on follow requests

Fixes #76
This commit is contained in:
Hank Grabowski 2024-06-26 21:20:40 -04:00
parent f7652062e3
commit b66bc39024
2 changed files with 4 additions and 1 deletions

View file

@ -3,6 +3,8 @@
## Version 0.11.0 (beta)
* Changes
* Connection request notifications won't have timestamps and can't be marked read. They go away when they are
adjudicated. ([Issue #76](https://gitlab.com/mysocialportal/relatica/-/issues/76))
* Fixes
* Fixes Unlisted posts are showing as and sharing as
private ([Issue #78](https://gitlab.com/mysocialportal/relatica/-/issues/78))

View file

@ -151,7 +151,8 @@ class NotificationControl extends StatelessWidget {
),
),
trailing: notification.dismissed ||
notification.type == NotificationType.direct_message
notification.type == NotificationType.direct_message ||
notification.type == NotificationType.follow_request
? null
: IconButton(
onPressed: manager == null