mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
import { transformTableStateToQuery } from 'utils';
|
|
|
|
export const transformCustomersStateToQuery = (tableState) => {
|
|
return {
|
|
...transformTableStateToQuery(tableState),
|
|
inactive_mode: tableState.inactiveMode,
|
|
};
|
|
};
|