Modifier.weight(1f) is stateless. It doesn't need to be keyed on noteEvent

This commit is contained in:
Vitor Pamplona
2026-02-28 12:28:23 -05:00
parent 21ff7c8502
commit e58cbc9c8a
@@ -1289,7 +1289,7 @@ fun SecondUserInfoRow(
verticalAlignment = CenterVertically,
modifier = UserNameMaxRowHeight,
) {
Column(modifier = remember(noteEvent) { Modifier.weight(1f) }) {
Column(modifier = remember { Modifier.weight(1f) }) {
if (noteEvent is IForkableEvent && noteEvent.isAFork()) {
ShowForkInformation(noteEvent, Modifier, accountViewModel, nav)
} else {