mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 16:19:49 +00:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { transformTableStateToQuery } from '@/utils';
|
|
|
|
export const transformCustomersStateToQuery = (tableState) => {
|
|
return {
|
|
...transformTableStateToQuery(tableState),
|
|
inactive_mode: tableState.inactiveMode,
|
|
};
|
|
};
|