fixing more dates

This commit is contained in:
2024-08-28 08:42:07 -06:00
parent 6c5068879a
commit 5b3f8a8515
7 changed files with 46 additions and 10 deletions

View File

@@ -19,7 +19,7 @@ export const CalendarMonth = ({ month }: { month: CalendarMonthModel }) => {
return (
<>
<h3 className="text-center">
<h3 className="text-center text-2xl">
<button
type="button"
className="btn btn-link"

View File

@@ -57,7 +57,7 @@ export default function Day({ day, month }: { day: Date; month: number }) {
{day.getDate()}
<ul className="list-disc ms-4">
{todaysAssignments.map((a) => (
<li key={a.name}>{a.name}</li>
<li key={a.name} >{a.name}</li>
))}
{todaysQuizzes.map((q) => (
<li key={q.name}>{q.name}</li>