Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 22x 22x | import {
ReleasesReduxState,
} from "../../../types/releaseTypes";
import { FailedRevisionsAction, UPDATE_FAILED_REVISIONS } from "../actions/failedRevisions";
export default function failedRevisions(
state: ReleasesReduxState["failedRevisions"] = [],
action: FailedRevisionsAction
) {
switch (action.type) {
case UPDATE_FAILED_REVISIONS:
return [...state, ...action.payload.failedRevisions];
default:
return state;
}
}
|