Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAndBear committed Oct 9, 2024
1 parent d165586 commit 41387bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/idp/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import React, { ReactElement, Suspense, lazy, useState, useEffect } from 'react'
import PropTypes from 'prop-types';

import { MuiThemeProvider } from '@material-ui/core/styles';
import { defaultTheme as theme } from 'kpop/es/theme';
import { defaultTheme } from 'kpop/es/theme';

import 'kpop/static/css/base.css';
import 'kpop/static/css/scrollbar.css';

import Spinner from './components/Spinner';
import * as version from './version';
import {InfiniteScaleContext} from './infiniteScaleContext';
import { InfiniteScaleContext } from './infiniteScaleContext';

const LazyMain = lazy(() => import(/* webpackChunkName: "identifier-main" */ './Main'));

Expand Down Expand Up @@ -52,7 +52,7 @@ const App = ({ bgImg }): ReactElement => {
className='oc-login-bg'
style={{ backgroundImage: bgImg ? `url(${bgImg})` : undefined }}
>
<MuiThemeProvider theme={theme}>
<MuiThemeProvider theme={ defaultTheme }>
<Suspense fallback={<Spinner />}>
<LazyMain />
</Suspense>
Expand Down

0 comments on commit 41387bc

Please sign in to comment.