Skip to content

Commit

Permalink
feat: default available seats to false
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Apr 11, 2024
1 parent fcfe54d commit 8293747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/search/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const Search = () => {

const [format, setFormat] = useState([true, true]);
const [enrollment, setEnrollment] = useState([true]);
const [available, setAvailable] = useState([true]);
const [available, setAvailable] = useState([false]);
const [start, setStart] = useState<Date>();
const [end, setEnd] = useState<Date>();
const [institution, setInstitution] = useState("Any Institution");
Expand Down

0 comments on commit 8293747

Please sign in to comment.