Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move orderbook to new ui-kit #169

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import type { ReactElement } from 'react';
import { Suspense } from 'react';
import { ErrorBoundary } from 'react-error-boundary';
import { Helmet } from 'react-helmet-async';
import { FullScreenLoader, GALocationTracker, PageVisibilityDetector } from './components';
import { FullScreenLoader, GALocationTracker } from './components';
import { Router, routesConfig as desktopRoutesConfig } from './features/routing';
import ErrorView from './views/ErrorView';
import { getRuntimeConfigOrThrow } from './utils';
import { useBreakpoint } from './features/shared';
import { PageVisibilityDetector, useBreakpoint } from './features/shared';
import { MobileRouter } from './features/mobile';
import { NotificationContainer } from './features/notifications';
import { BREAKPOINT } from './styles/Breakpoint';
Expand Down
2 changes: 1 addition & 1 deletion src/api/market/ProofProducerApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright Yury Korotovskikh <[email protected]>
*/

import type { LastProofProducer } from '@/models';
import type { LastProofProducer } from '@/features/lastProofProducer';
import { createApiClient } from '../common';

const httpFetcher = createApiClient('/producer');
Expand Down
15 changes: 0 additions & 15 deletions src/components/common/ChartTemplate/ChartBaseProps.ts

This file was deleted.

16 changes: 0 additions & 16 deletions src/components/common/ChartTemplate/ChartTemplate.module.scss

This file was deleted.

119 changes: 0 additions & 119 deletions src/components/common/ChartTemplate/ChartTemplate.tsx

This file was deleted.

7 changes: 0 additions & 7 deletions src/components/common/ChartTemplate/index.ts

This file was deleted.

6 changes: 0 additions & 6 deletions src/components/common/PageVisibilityDetector/index.ts

This file was deleted.

51 changes: 0 additions & 51 deletions src/components/common/StatementCharts/ProofCostChart.tsx

This file was deleted.

47 changes: 0 additions & 47 deletions src/components/common/StatementCharts/ProofGenTimeChart.tsx

This file was deleted.

7 changes: 0 additions & 7 deletions src/components/common/StatementCharts/index.ts

This file was deleted.

4 changes: 0 additions & 4 deletions src/components/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ export * from './ClickableIcon';
export * from './Overlay';
export * from './ObjectAsPlainTextViewer';
export * from './GALocationTracker';
export * from './PageVisibilityDetector';
export * from './ProgressBar';
export * from './RouterLink';
export * from './ChartTemplate';
export * from './ChartLegend';
export * from './StatementCharts';
export * from './FullScreenLoader';
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "../../../styles/constants.scss";
@import '../../../styles/constants.scss';

$height: 3rem;

Expand Down
Loading
Loading