From 96269ccafbf5e62457b6968d4de017b04e1686a1 Mon Sep 17 00:00:00 2001 From: "a.bouhuolia" Date: Tue, 28 Sep 2021 13:53:43 +0200 Subject: [PATCH] feat: remove blueprint config provider. --- src/components/App.js | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/src/components/App.js b/src/components/App.js index b917a7813..49699ba75 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -3,7 +3,6 @@ import { Router, Switch, Route } from 'react-router'; import { createBrowserHistory } from 'history'; import { QueryClientProvider, QueryClient } from 'react-query'; import { ReactQueryDevtools } from 'react-query/devtools'; -import { ConfigProvider } from '@blueprintjs/core'; import 'style/App.scss'; import 'moment/locale/ar-ly'; @@ -18,28 +17,22 @@ import Authentication from 'components/Authentication'; import { SplashScreen } from '../components'; import { queryConfig } from '../hooks/query/base'; -import { useAppIntlContext } from './AppIntlProvider'; - /** * App inner. */ function AppInsider({ history }) { - const { direction } = useAppIntlContext(); - return (
- - - - - - - - - + + + + + + + + - - +
); }