From 15dc98b497ee20ae9a79e60f32a6b7d0886aa60f Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Mon, 19 Jun 2023 14:02:30 +0200 Subject: [PATCH] fix: playground link (#4008) --- frontend/src/component/playground/Playground/LazyPlayground.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') );