diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.js b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.js
index 7b2cfd299..5e4ed1719 100644
--- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.js
+++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.js
@@ -1,6 +1,5 @@
import React, { useState, useEffect } from 'react';
import moment from 'moment';
-import 'style/pages/FinancialStatements/CashFlowStatement.scss';
import { FinancialStatement } from 'components';
import DashboardPageContent from 'components/Dashboard/DashboardPageContent';
diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js
index acdc24fc0..5b359362c 100644
--- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js
+++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js
@@ -19,7 +19,6 @@ export default function CashFlowStatementTable({
}) {
const {
cashFlowStatement: { tableRows },
- isCashFlowLoading,
query,
} = useCashFlowStatementContext();
@@ -31,10 +30,8 @@ export default function CashFlowStatementTable({
);
return (
-
-
+
);
}
+
+const InventoryValuationSheet = styled(FinancialSheet)`
+ min-width: 850px;
+`;
+
+const InventoryValuationDataTable = styled(DataTable)`
+ .table {
+ .tbody {
+ .tr .td {
+ border-bottom: 0;
+ padding-top: 0.4rem;
+ padding-bottom: 0.4rem;
+ }
+ .tr.row_type--total .td {
+ border-top: 1px solid #bbb;
+ font-weight: 500;
+ border-bottom: 3px double #000;
+ }
+ }
+ }
+`;
diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.js b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.js
index 495626c5d..5aaf19a14 100644
--- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.js
+++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.js
@@ -15,7 +15,6 @@ export default function ProfitLossSheetTable({
// Profit/Loss sheet context.
const {
profitLossSheet: { table, query },
- isLoading,
} = useProfitLossSheetContext();
// Retrieves the profit/loss table columns.
@@ -33,8 +32,6 @@ export default function ProfitLossSheetTable({
sheetType={}
fromDate={query.from_date}
toDate={query.to_date}
- name="profit-loss-sheet"
- loading={isLoading}
basis={query.basis}
>