mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
Fix disabled button with AccountSelect
This commit is contained in:
@@ -149,11 +149,11 @@ export const editAccount = (id, form) => {
|
||||
};
|
||||
|
||||
export const activateAccount = ({ id }) => {
|
||||
return (dispatch) => ApiService.post(`accounts/${id}/active`);
|
||||
return (dispatch) => ApiService.post(`accounts/${id}/activate`);
|
||||
};
|
||||
|
||||
export const inactiveAccount = ({ id }) => {
|
||||
return (dispatch) => ApiService.post(`accounts/${id}/inactive`);
|
||||
return (dispatch) => ApiService.post(`accounts/${id}/inactivate`);
|
||||
};
|
||||
|
||||
export const bulkActivateAccounts = ({ ids }) => {
|
||||
|
||||
Reference in New Issue
Block a user