Set height of activity creation sized box to 0 (#4048)

This commit is contained in:
Kelrap 2025-09-19 11:28:50 -04:00 committed by GitHub
parent 235b78d92f
commit 652c1fe4a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -129,7 +129,7 @@ class Message extends StatelessWidget {
// #Pangea
// return RoomCreationStateEvent(event: event);
return event.room.isActivitySession
? const SizedBox(height: 60.0)
? const SizedBox()
: RoomCreationStateEvent(event: event);
// Pangea#
}