Skip to content

Commit

Permalink
fix: Revoked Certificate dialog undismissable [WPB-7226] (#2853)
Browse files Browse the repository at this point in the history
  • Loading branch information
borichellow authored Apr 4, 2024
1 parent 9c4d5b4 commit c29437c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/src/main/kotlin/com/wire/android/ui/home/E2EIDialogs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,11 @@ fun E2EICertificateRevokedDialog(
type = WireDialogButtonType.Secondary,
),
buttonsHorizontalAlignment = false,
properties = DialogProperties(usePlatformDefaultWidth = false)
properties = DialogProperties(
usePlatformDefaultWidth = false,
dismissOnBackPress = false,
dismissOnClickOutside = false
)
)
}

Expand Down

0 comments on commit c29437c

Please sign in to comment.