Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
abouolia committed Feb 18, 2022
2 parents 68c0678 + e874b89 commit 96635ff
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/components/Button/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@


export * from './ButtonLink';
2 changes: 1 addition & 1 deletion src/components/Customers/CustomerDrawerLink.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import * as R from 'ramda';

import { ButtonLink } from 'components';
import { ButtonLink } from '../Button';
import withDrawerActions from 'containers/Drawer/withDrawerActions';

function CustomerDrawerLinkComponent({
Expand Down
3 changes: 2 additions & 1 deletion src/components/FinancialSheet/FinancialSheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import React, { useMemo, useCallback } from 'react';
import moment from 'moment';
import intl from 'react-intl-universal';

import { If, FormattedMessage as T } from 'components';
import If from '../Utils/If';
import { FormattedMessage as T } from '../FormattedMessage';
import {
FinancialSheetRoot,
FinancialSheetFooterCurrentTime,
Expand Down
3 changes: 2 additions & 1 deletion src/components/FinancialSheet/FinancialSheetSkeleton.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import React from 'react';
import styled from 'styled-components';

import { Align } from 'common';
import { SkeletonText, DataTable } from 'components';
import { SkeletonText } from 'components';
import DataTable from '../../components/DataTable'

import TableSkeletonRows from 'components/Datatable/TableSkeletonRows';
import TableSkeletonHeader from 'components/Datatable/TableHeaderSkeleton';
Expand Down
2 changes: 1 addition & 1 deletion src/components/FinancialSheet/ReportDataTable.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import styled from 'styled-components';

import { DataTable } from 'components';
import DataTable from '../DataTable';

export const ReportDataTable = styled(DataTable)`
.table .tbody .tr.no-results:last-of-type .td {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Vendors/VendorDrawerLink.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import * as R from 'ramda';

import { ButtonLink } from 'components';
import { ButtonLink } from '../Button';
import withDrawerActions from 'containers/Drawer/withDrawerActions';

function VendorDrawerLinkComponent({
Expand Down

0 comments on commit 96635ff

Please sign in to comment.