Skip to content

Commit

Permalink
chore:linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rubuy-74 committed Mar 5, 2025
1 parent df92ab0 commit aac48d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/planner/PasteOptionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ const PasteOptionModal = ({ pastedClasses } : { pastedClasses : string }) => {
</p>
<div className="grid grid-cols-3 md:grid-cols-5 lg:flex lg:flex-row gap-2 transition-colors duration-300 dark:group-hover:text-white group-hover:text-slate-700" >
{
[...multipleOptions].map((option) => {
[...multipleOptions].map((option,key) => {
return (
<Button
key={key}
variant='icon'
className={`flex-grow bg-lightish dark:bg-darkish
${selectedCopyOption === option.id
Expand Down
3 changes: 1 addition & 2 deletions src/components/planner/schedule/PlannerSchedule.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { useContext, useEffect, useState } from "react";
import { ClassDescriptor, CourseInfo, CourseOption, ImportedCourses, SlotInfo } from "../../../@types";
import { ClassDescriptor, SlotInfo } from "../../../@types";
import CourseContext from "../../../contexts/CourseContext";
import MultipleOptionsContext from "../../../contexts/MultipleOptionsContext";
import Schedule from "../Schedule";
import { importSchedule } from "../../../utils/ImportSchedule";

const PlannerSchedule = () => {
const { pickedCourses } = useContext(CourseContext);
Expand Down

0 comments on commit aac48d2

Please sign in to comment.