Skip to content

Commit a0ea303

Browse files
Merge pull request #442 from topcoder-platform/TCA-830_double-loading
TCA-830 Remove the loading spinner from the home page -> dev
2 parents aa63b57 + 3cfefba commit a0ea303

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src-ts/utils/home/Home.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import { FC, useContext, useEffect } from 'react'
22
import { NavigateFunction, useNavigate } from 'react-router-dom'
33

4-
import {
5-
LoadingSpinner,
6-
routeContext,
7-
RouteContextData,
8-
} from '../../lib'
4+
import { routeContext, RouteContextData } from '../../lib'
95
import '../../lib/styles/index.scss'
106

117
const Home: FC<{}> = () => {
@@ -35,7 +31,6 @@ const Home: FC<{}> = () => {
3531

3632
return (
3733
<div className='full-height-frame'>
38-
<LoadingSpinner hide={showLoggedOut} />
3934
{showLoggedOut && <LoggedOut />}
4035
</div>
4136
)

0 commit comments

Comments
 (0)