Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/frontend/src/app/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const userSlice = createSlice({
state.bookmarked = [];
},
showFCEs: (state, action: PayloadAction<boolean>) => {
state.showFCEs = false;
state.showFCEs = action.payload;
},
showCourseInfos: (state, action: PayloadAction<boolean>) => {
state.showCourseInfos = action.payload;
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function Header(): ReactElement {
return (
<div className="">
<div className="lg:p-1.5 md:p-2 p-3 lg:text-lg md:text-base text-xs text-white text-center bg-[#007fff]">
Spring/Summer 2026 instructors and room information temporarily unavailable due to changes in the Schedule of Classes.
Spring 2026 instructors and room information temporarily unavailable due to changes in the Schedule of Classes.
</div>

<div className="flex flex-row items-center justify-between p-6 bg-gray-50 h-16">
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/components/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const SearchBar = () => {

const setShowAll = (e: React.ChangeEvent<HTMLInputElement>) => {
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));
};
Expand Down
Loading