| 7 | problems: { problem: Problem }[]; |
| 8 | } |
| 9 | interface AllTracks extends Track { |
| 10 | problems: Problem[]; |
| 11 | categories: { |
| 12 | category: { |
| 13 | id: string; |
| 14 | category: string; |
| 15 | }; |
| 16 | }[]; |
| 17 | } |
| 18 | |
| 19 | export async function getProblem(problemId: string | null) { |
| 20 | if (!problemId) { |
nothing calls this directly
no outgoing calls
no test coverage detected