Skip to content

Commit

Permalink
fix: check for request not finished
Browse files Browse the repository at this point in the history
  • Loading branch information
aince42 committed Mar 3, 2025
1 parent d9277b5 commit 34c0aa5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class _Subtitle extends StatelessWidget {

@override
Widget build(BuildContext context) {
if (item.openContactRequest?.status != LocalRequestStatus.Expired && item.openContactRequest?.content.expiresAt != null) {
if (item.openContactRequest?.status == LocalRequestStatus.ManualDecisionRequired && item.openContactRequest?.content.expiresAt != null) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expand Down

0 comments on commit 34c0aa5

Please sign in to comment.