(path: string)
| 53 | * `#`, `?`, or `%` resolve to the right file instead of a truncated/malformed |
| 54 | * URL. Axum decodes the segments back before the `..` guard runs. */ |
| 55 | export function encodeFilePath(path: string): string { |
| 56 | return path.split('/').map(encodeURIComponent).join('/') |
| 57 | } |
| 58 | |
| 59 | export function useStepFiles(traceId: string | undefined, stepId: string | undefined) { |
| 60 | return useQuery<StepFile[]>({ |
no outgoing calls
no test coverage detected
searching dependent graphs…