Skip to content

Commit

Permalink
Merge pull request #11 from hemilabs/fix-lint
Browse files Browse the repository at this point in the history
Fix lint warning
  • Loading branch information
gabmontes authored Apr 3, 2024
2 parents 3fc74d8 + d96b1e9 commit fe3aea0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ packages/**/coverage
packages/**/dataset*.json
packages/**/recipients*.json
site/public/test*.json
.idea
18 changes: 9 additions & 9 deletions site/components/payment-streams/EndTime.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ const EndTime = function ({
value={years}
>
{[...Array(11).keys()].map(year => (
<option key={year} value={year}>
{t('count-years', { count: year })}
</option>
<option key={year} value={year}>
{t('count-years', { count: year })}
</option>
))}
</select>
<select
Expand All @@ -43,9 +43,9 @@ const EndTime = function ({
value={days}
>
{[...Array(365).keys()].map(day => (
<option key={day} value={day}>
{t('count-days', { count: day })}
</option>
<option key={day} value={day}>
{t('count-days', { count: day })}
</option>
))}
</select>
<select
Expand All @@ -54,9 +54,9 @@ const EndTime = function ({
value={hours}
>
{[...Array(24).keys()].map(hour => (
<option key={hour} value={hour}>
{t('count-hours', { count: hour })}
</option>
<option key={hour} value={hour}>
{t('count-hours', { count: hour })}
</option>
))}
</select>
</div>
Expand Down

0 comments on commit fe3aea0

Please sign in to comment.