fix: limit redaction message (#3600)

* fix: limit redaction message

Doesn't do much since redaction messages aren't currently shown, but will limit them to a reasonable length if they're ever added back

* add pangea tags
This commit is contained in:
avashilling 2025-07-31 13:51:47 -04:00 committed by GitHub
parent 2d11627d04
commit 7fb42cc980
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1354,6 +1354,9 @@ class ChatController extends State<ChatPageWithRoom>
message: L10n.of(context).redactMessageDescription,
isDestructive: true,
hintText: L10n.of(context).optionalRedactReason,
// #Pangea
maxLength: 255,
// Pangea#
okLabel: L10n.of(context).remove,
cancelLabel: L10n.of(context).cancel,
// #Pangea