Skip to content

Commit

Permalink
Update SettingMenu.tsx (#182)
Browse files Browse the repository at this point in the history
Lower values
  • Loading branch information
davidarroyo1234 authored Aug 4, 2024
1 parent 4e24577 commit d27f1cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/SettingMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const SettingMenu = ({
type="number"
id="searchCycles"
name="searchCycles"
min={1000}
min={500}
max={999999}
value={timeBetweenSearchCycles}
onChange={(e) => handleInputChange(e, setTimeBetweenSearchCycles)}
Expand All @@ -63,7 +63,7 @@ export const SettingMenu = ({
type="number"
id="fiveSearchCycles"
name="fiveSearchCycles"
min={10000}
min={4000}
max={999999}
value={timeToWaitAfterFiveSearchCycles}
onChange={(e) => handleInputChange(e, setTimeToWaitAfterFiveSearchCycles)}
Expand All @@ -77,7 +77,7 @@ export const SettingMenu = ({
type="number"
id="timeBetweenUnfollow"
name="timeBetweenUnfollow"
min={2500}
min={1000}
max={999999}
value={timeBetweenUnfollows}
onChange={(e) => handleInputChange(e, setTimeBetweenUnfollows)}
Expand All @@ -91,7 +91,7 @@ export const SettingMenu = ({
type="number"
id="timeAfterFiveUnfollows"
name="timeAfterFiveUnfollows"
min={30000}
min={7000}
max={999999}
value={timeToWaitAfterFiveUnfollows}
onChange={(e) => handleInputChange(e, setTimeToWaitAfterFiveUnfollows)}
Expand Down

0 comments on commit d27f1cd

Please sign in to comment.