mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
12 lines
173 B
JavaScript
12 lines
173 B
JavaScript
|
|
|
|
export const setGlobalErrors = (errors) => {
|
|
return dispatch => {
|
|
dispatch({
|
|
type: 'GLOBAL_ERRORS_SET',
|
|
payload: {
|
|
errors,
|
|
},
|
|
});
|
|
}
|
|
} |