| 5 | import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "../components/ui/card"; |
| 6 | |
| 7 | interface CallbackProps { |
| 8 | setIsAuthenticated: (value: boolean) => void; |
| 9 | } |
| 10 | |
| 11 | const Callback = ({ setIsAuthenticated }: CallbackProps) => { |
| 12 | const [searchParams] = useSearchParams(); |
nothing calls this directly
no outgoing calls
no test coverage detected