| 8 | import { allowSelfOpenAIKey } from "@/utils"; |
| 9 | |
| 10 | interface Props { |
| 11 | className?: string; |
| 12 | } |
| 13 | |
| 14 | const QuotaView = (props: Props) => { |
| 15 | const [quota, setQuota] = useState<Quota>({ current: 0, limit: 0 }); |
nothing calls this directly
no outgoing calls
no test coverage detected