Delete for Everyone: Don't allow unrestricted deletes in Note to Self

This commit is contained in:
Scott Nonnenberg 2024-01-03 08:46:39 -08:00 committed by GitHub
parent 677ab64335
commit 0cc6228ede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 25 additions and 15 deletions

View file

@ -41,7 +41,7 @@ export default function DeleteMessagesModal({
: i18n('icu:DeleteMessagesModal--deleteForMe'),
});
if (canDeleteForEveryone || isMe) {
if (canDeleteForEveryone) {
const tooManyMessages = messageCount > MAX_DELETE_FOR_EVERYONE;
actions.push({
'aria-disabled': tooManyMessages,