()
| 143 | } |
| 144 | |
| 145 | export function TargetSessionRoute() { |
| 146 | const params = useParams<{ serverKey: string; id: string }>() |
| 147 | return ( |
| 148 | <Show when={`${params.serverKey}\0${params.id}`} keyed> |
| 149 | <SessionRouteErrorBoundary sessionID={params.id} serverKey={requireServerKey(params.serverKey)} padded> |
| 150 | <ResolvedTargetSessionRoute /> |
| 151 | </SessionRouteErrorBoundary> |
| 152 | </Show> |
| 153 | ) |
| 154 | } |
| 155 | |
| 156 | function SessionRouteErrorBoundary( |
| 157 | props: ParentProps<{ sessionID?: string; serverKey?: ServerConnection.Key; padded?: boolean }>, |
nothing calls this directly
no test coverage detected