Skip to content

Commit

Permalink
Fix crash for the rate app dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Semper-Viventem committed Apr 25, 2024
1 parent 27221dd commit b26e536
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
minSdk = 29
targetSdk = 34

versionCode = 1708536352
versionName = "0.25.0-beta"
versionCode = 1708536353
versionName = "0.25.1-beta"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,9 @@ object DeviceListScreen {
is DeviceListViewModel.EnjoyTheAppState.Question -> EnjoyTheAppQuestion(viewModel)
is DeviceListViewModel.EnjoyTheAppState.Like -> EnjoyTheAppLike(enjoyTheAppState, viewModel)
is DeviceListViewModel.EnjoyTheAppState.Dislike -> EnjoyTheAppDislike(viewModel)
is DeviceListViewModel.EnjoyTheAppState.None -> throw IllegalStateException("EnjoyTheAppState.NONE is not supported here")
is DeviceListViewModel.EnjoyTheAppState.None -> {
// nothing to draw
}
}
}
}
Expand Down

0 comments on commit b26e536

Please sign in to comment.