fix: declared WViewModel as open te allow inheritance

This commit is contained in:
Robin Meersman 2024-07-27 21:37:40 +02:00
parent 1d405d7ec4
commit 55e78a4301

View file

@ -11,7 +11,7 @@ import kotlinx.coroutines.launch
/** /**
* Custom viewmodel class for this app. * Custom viewmodel class for this app.
*/ */
class WViewModel : ViewModel() { open class WViewModel : ViewModel() {
/** /**
* Function to launch a suspended function in viewmodel scope. * Function to launch a suspended function in viewmodel scope.