(checkpointsOrCheckpointsId)
| 1217 | ]; |
| 1218 | }; |
| 1219 | var useRedoInformation = (checkpointsOrCheckpointsId) => { |
| 1220 | const checkpoints = useCheckpointsOrCheckpointsById( |
| 1221 | checkpointsOrCheckpointsId |
| 1222 | ); |
| 1223 | const [, , [forwardId]] = useCheckpointIds(checkpoints); |
| 1224 | return [ |
| 1225 | !isUndefined(forwardId), |
| 1226 | useGoForwardCallback(checkpoints), |
| 1227 | forwardId, |
| 1228 | ifNotUndefined(forwardId, (id) => checkpoints?.getCheckpoint(id)) ?? EMPTY_STRING |
| 1229 | ]; |
| 1230 | }; |
| 1231 | var useCheckpointIdsListener = (listener, listenerDeps, checkpointsOrCheckpointsId) => useListener( |
| 1232 | CHECKPOINT + IDS, |
| 1233 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
nothing calls this directly
no test coverage detected
searching dependent graphs…