Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Don't show 0 more days #163

Merged
merged 1 commit into from
Aug 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
fix: Don't show 0 more days
  • Loading branch information
amaury1093 committed Aug 2, 2019
commit 85814137da34b90105d0ff7ffc88e496e4800775
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