Skip to content

Commit

Permalink
Fix a crash on about screen on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Robiez committed Apr 2, 2024
1 parent 3cd2c40 commit 115972d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fun AboutScreen(
text = stringResource(
MR.strings.version,
versionName,
versionCode.toInt()
versionCode
),
)
}
Expand Down
2 changes: 1 addition & 1 deletion shared/ui/src/commonMain/moko-resources/base/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<string name="app_name">Android Makers by droidcon</string>

<string name="version">Version %s (%d)</string>
<string name="version">Version %s (%s)</string>

<string name="agenda">Agenda</string>
<string name="venue">Venue</string>
Expand Down

0 comments on commit 115972d

Please sign in to comment.