Skip to content

Commit 581fa50

Browse files
committed
infinitecampus responsive schedule
1 parent b05b637 commit 581fa50

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

client/src/components/layout/PeriodActionButton.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,23 @@ export default function PeriodActionButton(props: PeriodActionButtonProps) {
3232
const { name } = props;
3333

3434
if (name === 'PRIME' || name === 'Study Hall')
35-
return <FlexiSCHEDAction {...props} />
35+
return <InfiniteCampusAction {...props} />
3636

3737
if (name === 'Brunch' || name === 'Lunch')
3838
return <MenuAction {...props} />
3939

4040
return <></>
4141
}
4242

43-
function FlexiSCHEDAction(props: PeriodActionButtonProps) {
43+
function InfiniteCampusAction(props: PeriodActionButtonProps) {
4444
return (
45-
<a href="https://gunn.flexisched.net" target="_blank" className="text-inherit">
45+
<a
46+
href="https://pausdca.infinitecampus.org/campus/nav-wrapper/student/portal/student/responsive-schedule"
47+
target="_blank"
48+
className="text-inherit"
49+
>
4650
<ActionButton {...props}>
47-
FlexiSCHED
51+
Infinite Campus
4852
</ActionButton>
4953
</a>
5054
)

0 commit comments

Comments
 (0)