Skip to content

Commit

Permalink
fix: Don't show 0 more days (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed Aug 10, 2019
1 parent 55ec936 commit 1303bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/Screens/Home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export function Home (props: HomeProps) {
O.fold(renderCigarettesText, days => (
<Text adjustsFontSizeToFit style={styles.shit}>
<Text style={styles.cigarettesCount}>
{i18n.t('home_wait_more_days', { days })}
{i18n.t('home_wait_more_days', { days: days + 1 })}
</Text>{' '}
{i18n.t('home_wait_until_results')}
</Text>
Expand Down

0 comments on commit 1303bae

Please sign in to comment.