Skip to content

Commit a9cbe16

Browse files
committed
lint
1 parent baaaa0f commit a9cbe16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/components/ChatV2/generics/CourseOption.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useState, type ReactNode } from 'react'
22
import { Typography } from '@mui/material'
33
import { useNavigate } from 'react-router-dom'
44

5-
export default function CourseOption({ children, link, isActive }: { children: ReactNode; link: string, isActive: boolean }) {
5+
export default function CourseOption({ children, link, isActive }: { children: ReactNode; link: string; isActive: boolean }) {
66
const [isHovered, setIsHovered] = useState<boolean>(false)
77
const navigate = useNavigate()
88

0 commit comments

Comments
 (0)