Remove unused 'initReportById' function

environments/review-chats-g56n7m/deployments/1665
Chewbacca 2022-12-02 09:03:08 -05:00
rodzic 8df7d9c9ef
commit b5aca1649d
1 zmienionych plików z 0 dodań i 12 usunięć

Wyświetl plik

@ -38,17 +38,6 @@ const initReport = (account: Account, entities?: ReportedEntity) => (dispatch: A
return dispatch(openModal('REPORT'));
};
// TODO: no longer used. Can be removed.
const initReportById = (accountId: string) =>
(dispatch: AppDispatch, getState: () => RootState) => {
dispatch({
type: REPORT_INIT,
account: getState().accounts.get(accountId),
});
dispatch(openModal('REPORT'));
};
const cancelReport = () => ({
type: REPORT_CANCEL,
});
@ -119,7 +108,6 @@ export {
REPORT_BLOCK_CHANGE,
REPORT_RULE_CHANGE,
initReport,
initReportById,
cancelReport,
toggleStatusReport,
submitReport,