Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
Merge branch 'pubs-page' of https://github.com/brown-ccv/mmp into pub…
Browse files Browse the repository at this point in the history
…s-page
  • Loading branch information
hetd54 committed Jul 1, 2024
2 parents c09613c + b9d4774 commit 035d680
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Publications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ const PublicationSection: React.FC<PubProps> = ({ publications }) => {
] as const

const [searchInput, setSearchInput] = useState("")
const [classificationFilter, setClassificationFilter] = useState(classificationOptions)
const [classificationFilter, setClassificationFilter] =
useState<Readonly<{ value: Classification; label: string }[]>>(classificationOptions)
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
e.preventDefault()
setSearchInput(e.target.value)
Expand Down

0 comments on commit 035d680

Please sign in to comment.