Snackbar: SnackbarDispatcher.post does not need to be suspend.

This commit is contained in:
Benoit Marty 2025-01-24 14:42:07 +01:00
parent 0dc87cdf84
commit 9b0df915a6
4 changed files with 6 additions and 10 deletions

View file

@ -45,7 +45,7 @@ class LoggedInEventProcessor @Inject constructor(
observingJob = null
}
private suspend fun displayMessage(message: Int) {
private fun displayMessage(message: Int) {
snackbarDispatcher.post(SnackbarMessage(message))
}
}