diff --git a/app/views/invites/_invite.html.haml b/app/views/invites/_invite.html.haml
index 81d67eb7db..1c7ec311d2 100644
--- a/app/views/invites/_invite.html.haml
+++ b/app/views/invites/_invite.html.haml
@@ -13,5 +13,5 @@
= l invite.expires_at
%td= table_link_to 'link', public_invite_url(invite_code: invite.code), public_invite_url(invite_code: invite.code)
%td
- - if invite.expired? && policy(invite).destroy?
+ - if !invite.expired? && policy(invite).destroy?
= table_link_to 'times', t('invites.delete'), invite_path(invite), method: :delete