department-of-veterans-affairs/vets-website

View on GitHub
src/applications/representative-search/actions/reports/cancelRepresentativeReport.js

Summary

Maintainability
A
0 mins
Test Coverage
import { REPORT_CANCELLED } from '../../utils/actionTypes';

export const cancelRepresentativeReport = () => async dispatch => {
  dispatch({
    type: REPORT_CANCELLED,
    payload: {},
  });
};