| 13 | import { authClient } from "@/lib/auth-client"; |
| 14 | |
| 15 | interface UpgradeModalProps { |
| 16 | open: boolean; |
| 17 | onOpenChange: (open: boolean) => void; |
| 18 | }; |
| 19 | |
| 20 | export const UpgradeModal = ({ |
| 21 | open, |
nothing calls this directly
no outgoing calls
no test coverage detected