Skip to content

Commit

Permalink
stop using v9 (banner) and default to scraper info for location/profe…
Browse files Browse the repository at this point in the history
…ssor
  • Loading branch information
szeckirjr committed Feb 26, 2024
1 parent 7136051 commit c71d68f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/calendar/containers/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function SectionsContainer({ term, subject, code }: SectionsContainerProp
data: sections,
loading,
error: sectionsError,
} = useSections({ term, queryParams: { subject, code, v9: true } });
} = useSections({ term, queryParams: { subject, code, v9: false } });
const mode = useDarkMode();

const seats = useMemo(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/registration/containers/CourseContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function CourseContainer({ course }: Props) {

const { data: sections, loading } = useSections({
term: termType,
queryParams: { subject: course.subject, code: course.code, v9: true },
queryParams: { subject: course.subject, code: course.code, v9: false },
});
const seats = useMemo(() => {
return sections
Expand Down

0 comments on commit c71d68f

Please sign in to comment.