chore: remove dubugger point.

This commit is contained in:
a.bouhuolia
2022-01-30 16:01:59 +02:00
parent 3d78d2d051
commit e296507a96
2 changed files with 2 additions and 3 deletions

View File

@@ -377,6 +377,5 @@ const dynamicColumnMapper = R.curry((data, column) => {
* @returns
*/
export const dynamicColumns = (columns, data) => {
debugger;
return R.map(dynamicColumnMapper(data), columns);
};

View File

@@ -1,8 +1,7 @@
containers/FinancialStatements/reducersimport React from 'react';
import React from 'react';
import { chain } from 'lodash';
import moment from 'moment';
import { FormattedMessage as T } from 'components';
import intl from 'react-intl-universal';
export const trialBalanceSheetReducer = (sheet) => {
const results = [];
@@ -22,6 +21,7 @@ export const trialBalanceSheetReducer = (sheet) => {
};
export const journalTableRowsReducer = (journal) => {
const TYPES = {
ENTRY: 'ENTRY',