mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
11 lines
146 B
TypeScript
11 lines
146 B
TypeScript
// @ts-nocheck
|
|
|
|
|
|
export const setGlobalErrors = (errors) => {
|
|
return {
|
|
type: 'GLOBAL_ERRORS_SET',
|
|
payload: {
|
|
errors,
|
|
},
|
|
};
|
|
} |