Skip to content

Commit

Permalink
now showing lifter number
Browse files Browse the repository at this point in the history
  • Loading branch information
euanwm committed Dec 17, 2023
1 parent ae7d82b commit fc59ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/components/organisms/homePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const lifterLoadMoreQty = 50

function HomePage() {
const [start] = useState(0)
const [stop, setStop] = useState(50)
const [stop, setStop] = useState(lifterLoadMoreQty)
const [sortby, setSortBy] = useState('total')
const [federation, setFederation] = useState('allfeds')
const [weightclass, setWeightclass] = useState('MALL')
Expand Down Expand Up @@ -84,7 +84,7 @@ function HomePage() {
onClick={updateLifterList}
isDisabled={false}
>
Load more results
Showing {stop} / {data?.size} lifters...
</Button>
</div>
{showLifterGraph && (
Expand Down

0 comments on commit fc59ff6

Please sign in to comment.