We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baaaa0f commit a9cbe16Copy full SHA for a9cbe16
src/client/components/ChatV2/generics/CourseOption.tsx
@@ -2,7 +2,7 @@ import { useState, type ReactNode } from 'react'
2
import { Typography } from '@mui/material'
3
import { useNavigate } from 'react-router-dom'
4
5
-export default function CourseOption({ children, link, isActive }: { children: ReactNode; link: string, isActive: boolean }) {
+export default function CourseOption({ children, link, isActive }: { children: ReactNode; link: string; isActive: boolean }) {
6
const [isHovered, setIsHovered] = useState<boolean>(false)
7
const navigate = useNavigate()
8
0 commit comments