( eventId: string | undefined, options?: RunDetailOptions )
| 42 | } |
| 43 | |
| 44 | export function useEventRunDetails( |
| 45 | eventId: string | undefined, |
| 46 | options?: RunDetailOptions |
| 47 | ): UseRunDetailsResult { |
| 48 | const event = useEventDetails(eventId); |
| 49 | return useRunDetails(event.data?.runs[0]?.id, options); |
| 50 | } |
no test coverage detected
searching dependent graphs…