Remove old comments [skip ci]

This commit is contained in:
Henry Hiles 2026-04-04 18:49:35 -04:00
commit 24f5f7d0b6
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -126,7 +126,6 @@ class ChatBox extends HookConsumerWidget {
), ),
], ],
icon: Icon(Icons.add), icon: Icon(Icons.add),
// enabled: room.canSendDefaultMessages, TODO: Permissions check
), ),
Expanded( Expanded(
child: FlutterTagger( child: FlutterTagger(
@ -169,7 +168,6 @@ class ChatBox extends HookConsumerWidget {
), ),
IconButton( IconButton(
onPressed: !canSendMessages ? null : send, onPressed: !canSendMessages ? null : send,
// onPressed: room.canSendDefaultMessages ? send : null,
icon: Icon(Icons.send), icon: Icon(Icons.send),
tooltip: "Send message", tooltip: "Send message",
), ),