Skip to content

Commit

Permalink
Fixed load more past conference button
Browse files Browse the repository at this point in the history
  • Loading branch information
nimzco committed May 3, 2021
1 parent 4f997a3 commit fb7c831
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/scenes/ConferenceList/ConferenceList.tsx
Expand Up @@ -154,7 +154,7 @@ const ConferenceListPage: React.FC<Props> = ({
}

return filters
}, [showPast, online])
}, [showPast, online, pastConferencePage])

const loadMore = () => {
setHitsPerPage(hitsPerPage + 50)
Expand Down Expand Up @@ -286,7 +286,6 @@ interface OnlineRefinementProps {
onChange(arg: OnlineOptions): void
}
const OnlineRefinement = ({ value, onChange }: OnlineRefinementProps) => {
console.log(value)
return (
<div className={styles.OnlineRadios}>
<label>
Expand Down

0 comments on commit fb7c831

Please sign in to comment.