Skip to content

Commit

Permalink
fix: clean up commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi-bams committed Oct 7, 2024
1 parent fb9a7d5 commit edbbda7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
17 changes: 1 addition & 16 deletions src/components/App/Splash/SpiningSphere/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,5 @@ export const SphereAnimation = () => {
}
}, [])

return (
<Flex id="lottie-sphere-animation" style={{ width: '167px', height: '167px', opacity: 0.5 }}>
{/* <Lottie
height={167}
options={{
loop: true,
autoplay: true,
animationData: preloadData,
rendererSettings: {
preserveAspectRatio: 'xMidYMid slice',
},
}}
width={167}
/> */}
</Flex>
)
return <Flex id="lottie-sphere-animation" style={{ width: '167px', height: '167px', opacity: 0.5 }} />
}
2 changes: 0 additions & 2 deletions src/components/AppContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ const LazyApp = lazy(() => import('../App').then(({ App }) => ({ default: App })

export const AppContainer = () => {
const App = <LazyApp />
// const { splashDataLoading } = useDataStore((s) => s)

return (
<AppProviders>
{/* {splashDataLoading && <Splash />} */}
<Suspense fallback={<div>Loading...</div>}>
<AuthGuard>
<Routes>
Expand Down

0 comments on commit edbbda7

Please sign in to comment.