diff --git a/frontend/src/component/playground/Playground/LazyPlayground.tsx b/frontend/src/component/playground/Playground/LazyPlayground.tsx index a8dbc8f87c..c27baed30b 100644 --- a/frontend/src/component/playground/Playground/LazyPlayground.tsx +++ b/frontend/src/component/playground/Playground/LazyPlayground.tsx @@ -1,7 +1,7 @@ import { lazy } from 'react'; import useUiConfig from '../../../hooks/api/getters/useUiConfig/useUiConfig'; -export const LazyLegacyPlayground = lazy(() => import('./AdvancedPlayground')); +export const LazyLegacyPlayground = lazy(() => import('./Playground')); export const LazyAdvancedPlayground = lazy( () => import('./AdvancedPlayground') );