Skip to content

Commit

Permalink
Merge pull request #22 from Myzel394/hotfix-issue-21
Browse files Browse the repository at this point in the history
Fix crash
  • Loading branch information
Myzel394 authored Jul 22, 2024
2 parents d7f410c + 87104fe commit ce2ce6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ private fun Default(
),
)

if (uiState.result is ConverterResult.Default && uiState.unitTo.factor >= BigDecimal.ZERO) {
if (uiState.result is ConverterResult.Default && uiState.unitTo.factor > BigDecimal.ZERO) {
ValueOneSummary(
modifier = with(density) {
Modifier
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
versionCode = "20"
versionName = "0.2.0"
versionCode = "21"
versionName = "0.2.1"

androidxBrowserBrowser = "1.8.0"
androidGradlePlugin = "8.3.2"
Expand Down

0 comments on commit ce2ce6f

Please sign in to comment.