fix: regression in which the typing indicator is on top

Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
Infi 2024-01-08 00:49:26 +01:00
parent c53fd360f2
commit 47b804c0d0
1 changed files with 6 additions and 4 deletions

View File

@ -480,12 +480,14 @@ fun ChannelScreen(
containerColor = MaterialTheme.colorScheme.primary
)
}
TypingIndicator(
users = viewModel.typingUsers
)
}
}
if (!viewModel.showAgeGate) {
TypingIndicator(
users = viewModel.typingUsers
)
}
}
Column(