Skip to content

Commit

Permalink
Fixed missed rename
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoAbove committed Aug 13, 2024
1 parent df12d00 commit 1be3d52
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/SearchSeeds/SearchViews/Search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ const Search = () => {
startCalculation,
stopCalculation,
computeJobName,
handleSeedEndChange,
handleCustomSeedListChange,
updateSearchConfig,
findAll,
Expand Down Expand Up @@ -134,7 +133,7 @@ const Search = () => {
placeholder="Optional"
disabled={running || !solverReady}
value={seedEnd}
onChange={e => handleSeedEndChange(parseInt(e.target.value, 10))}
onChange={e => updateSearchConfig({ to: parseInt(e.target.value, 10) })}
/>
</Form.Group>
</Col>
Expand Down

0 comments on commit 1be3d52

Please sign in to comment.