chore: fix lint errors

This commit is contained in:
doprz
2024-03-02 17:20:05 -06:00
parent 74e6379d93
commit 5abb2a4d4f
5 changed files with 8 additions and 24 deletions

View File

@@ -1,9 +1,7 @@
import { background } from '@shared/messages'
import { background } from '@shared/messages';
import type { Course } from '@shared/types/Course';
import { Status } from '@shared/types/Course';
import type Instructor from '@shared/types/Instructor';
import addCourse from '@pages/background/lib/addCourse';
import removeCourse from '@pages/background/lib/removeCourse';
import type { Course } from '@shared/types/Course';
import type { UserSchedule } from '@shared/types/UserSchedule';
import { Button } from '@views/components/common/Button/Button';
import { Chip, flagMap } from '@views/components/common/Chip/Chip';
@@ -73,7 +71,7 @@ const HeadingAndActions: React.FC<HeadingAndActionProps> = ({
const handleCopy = () => {
navigator.clipboard.writeText(uniqueId.toString());
};
const handleOpenRateMyProf = async () => {
const openTabs = instructors.map(instructor => {
const instructorSearchTerm = getInstructorFullName(instructor);