fix: Connectivity toast message was causing issues. #196

Merged
AmineB merged 1 commits from fix-toast into master 2025-04-08 20:33:44 +00:00
Showing only changes of commit a602f7adf2 - Show all commits

View File

@ -82,13 +82,14 @@ class MyApp :
} else {
R.string.network_connectivity_lost
}
Toast
.makeText(
applicationContext,
toastMessage,
Toast.LENGTH_SHORT,
).show()
launch(Dispatchers.Main) {
Toast
.makeText(
applicationContext,
toastMessage,
Toast.LENGTH_SHORT,
).show()
}
}
}
}