fix price decimals
This commit is contained in:
parent
92eedda98b
commit
115534f1c6
1 changed files with 3 additions and 1 deletions
|
@ -244,7 +244,9 @@ function ProximoListScreen(props: Props) {
|
|||
>
|
||||
{`${item.quantity} ${i18n.t('screens.proximo.inStock')}`}
|
||||
</Subheading>
|
||||
<Subheading style={styles.modalTitle}>{item.price}€</Subheading>
|
||||
<Subheading style={styles.modalTitle}>
|
||||
{item.price.toFixed(2)}€
|
||||
</Subheading>
|
||||
</View>
|
||||
|
||||
<ScrollView>
|
||||
|
|
Loading…
Reference in a new issue