diff --git a/apps/web/src/app/test/chart-playground/page.tsx b/apps/web/src/app/test/chart-playground/page.tsx index 55daa96b8..c6c24d1f1 100644 --- a/apps/web/src/app/test/chart-playground/page.tsx +++ b/apps/web/src/app/test/chart-playground/page.tsx @@ -16,6 +16,7 @@ import type { RunSQLResponse } from '@/api/asset_interfaces'; import { useMemoizedFn } from '@/hooks'; import { Button } from '@/components/ui/buttons'; import { Input } from '@/components/ui/inputs'; +import { AppSplitter } from '@/components/ui/layouts/AppSplitter'; type YamlifiedConfig = { sql: string; @@ -108,133 +109,152 @@ export default function ChartPlayground() { } ); - return ( -
- {JSON.stringify(chartConfigError as Object, null, 2)} --
- {JSON.stringify(runSQLError as Object, null, 2)} --
- Please wait while we process your query... -
-+ {JSON.stringify(chartConfigError || {}, null, 2)} ++
+ {JSON.stringify(runSQLError || {}, null, 2)} ++
+ Please wait while we process your query... +
+