diff --git a/apps/frontend/src/app/user.ts b/apps/frontend/src/app/user.ts index 2ccedf9..8e9adad 100644 --- a/apps/frontend/src/app/user.ts +++ b/apps/frontend/src/app/user.ts @@ -73,7 +73,7 @@ export const userSlice = createSlice({ state.bookmarked = []; }, showFCEs: (state, action: PayloadAction) => { - state.showFCEs = action.payload; + state.showFCEs = false; }, showCourseInfos: (state, action: PayloadAction) => { state.showCourseInfos = action.payload; diff --git a/apps/frontend/src/components/Header.tsx b/apps/frontend/src/components/Header.tsx index 9201d10..16cb3e1 100644 --- a/apps/frontend/src/components/Header.tsx +++ b/apps/frontend/src/components/Header.tsx @@ -41,7 +41,7 @@ export default function Header(): ReactElement { return (
- Spring 2026 instructors and room information temporarily unavailable due to changes in the Schedule of Classes. + Spring/Summer 2026 instructors and room information temporarily unavailable due to changes in the Schedule of Classes.
diff --git a/apps/frontend/src/components/SearchBar.tsx b/apps/frontend/src/components/SearchBar.tsx index 7356ef7..0719a2c 100644 --- a/apps/frontend/src/components/SearchBar.tsx +++ b/apps/frontend/src/components/SearchBar.tsx @@ -195,7 +195,7 @@ const SearchBar = () => { const setShowAll = (e: React.ChangeEvent) => { dispatch(userSlice.actions.showAll(e.target.checked)); - if (isSignedIn) dispatch(userSlice.actions.showFCEs(e.target.checked)); + // if (isSignedIn) dispatch(userSlice.actions.showFCEs(e.target.checked)); dispatch(userSlice.actions.showCourseInfos(e.target.checked)); dispatch(userSlice.actions.showSchedules(e.target.checked)); };