(props)
| 213 | return encloseWithId ? [id, ":{", separated, "}"] : separated; |
| 214 | }; |
| 215 | var CheckpointView = (props) => { |
| 216 | const checkpoint = useCheckpoint( |
| 217 | () => props.checkpointId, |
| 218 | () => props.checkpoints |
| 219 | ); |
| 220 | return memo( |
| 221 | () => wrap( |
| 222 | getValue(checkpoint) ?? EMPTY_STRING, |
| 223 | void 0, |
| 224 | props.debugIds, |
| 225 | props.checkpointId |
| 226 | ) |
| 227 | ); |
| 228 | }; |
| 229 | var ResultCellView = (props) => { |
| 230 | const resultCell = useResultCell( |
| 231 | () => props.queryId, |
nothing calls this directly
no test coverage detected
searching dependent graphs…