diff --git a/components/UpcomingAssignments.tsx b/components/UpcomingAssignments.tsx index 000d9f4..d21bb4f 100644 --- a/components/UpcomingAssignments.tsx +++ b/components/UpcomingAssignments.tsx @@ -3,8 +3,8 @@ import { useState } from "react" import { ScheduleTable, getSchedule } from "./Schedule" -const threshold = 3 * 7 * 24 * 60 * 60 * 1000 // 3 weeks -const thresholdText = "3 weeks" +const threshold = 32 * 24 * 60 * 60 * 1000 - 1 // 31 days +const thresholdText = "31 days" const schedule = getSchedule(null) @@ -23,4 +23,4 @@ export function UpcomingAssignments() {