Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
update import
Browse files Browse the repository at this point in the history
  • Loading branch information
HexaField committed Jun 19, 2024
1 parent 958371f commit 3f6d600
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/engine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ import { getMutableState } from '@etherealengine/hyperflux'
import { EngineState } from '@etherealengine/spatial/src/EngineState'
import { createEngine } from '@etherealengine/spatial/src/initializeEngine'

import { ThemeProvider } from '@etherealengine/client-core/src/common/services/ThemeService'

createEngine(document.getElementById('engine-renderer-canvas') as HTMLCanvasElement)
getMutableState(EngineState).publicPath.set(
// @ts-ignore
Expand All @@ -43,8 +41,6 @@ initializeBrowser()

export default function ({ children }) {
return (
<ThemeProvider>
<Suspense fallback={<LoadingCircle message={'Loading...'} />}>{children}</Suspense>
</ThemeProvider>
<Suspense fallback={<LoadingCircle message={'Loading...'} />}>{children}</Suspense>
)
}

0 comments on commit 3f6d600

Please sign in to comment.