diff --git a/web/src/api/asset_interfaces/metric/charts/interfaces.ts b/web/src/api/asset_interfaces/metric/charts/interfaces.ts
index 171959d2a..1d036d638 100644
--- a/web/src/api/asset_interfaces/metric/charts/interfaces.ts
+++ b/web/src/api/asset_interfaces/metric/charts/interfaces.ts
@@ -11,7 +11,6 @@ export type BusterChartProps = {
id?: string;
error?: string;
columnMetadata?: ColumnMetaData[];
- useRapidResizeObserver?: boolean;
editable?: boolean;
onInitialAnimationEnd?: () => void;
onChartMounted?: (chart?: any) => void;
diff --git a/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/page.tsx b/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/page.tsx
index 7fde6bd9c..8ce2ac231 100644
--- a/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/page.tsx
+++ b/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/page.tsx
@@ -1,5 +1,6 @@
'use client';
+import { FileIndeterminateLoader } from '@/components/features/FileIndeterminateLoader';
import { StatusCard } from '@/components/ui/card/StatusCard';
import { ReasoningController } from '@/controllers/ReasoningController';
import { useChatIndividualContextSelector } from '@/layouts/ChatLayout/ChatContext';
@@ -13,11 +14,14 @@ export default function Page(params: { params: { chatId: string } }) {
}
return (
-
-
-
+ <>
+
+
+
+
+ >
);
}
diff --git a/web/src/components/features/layouts/AppVerticalCodeSplitter/SQLContainer.tsx b/web/src/components/features/layouts/AppVerticalCodeSplitter/SQLContainer.tsx
index 067f141bf..590ff8390 100644
--- a/web/src/components/features/layouts/AppVerticalCodeSplitter/SQLContainer.tsx
+++ b/web/src/components/features/layouts/AppVerticalCodeSplitter/SQLContainer.tsx
@@ -45,7 +45,7 @@ export const SQLContainer: React.FC<{
className
)}>
= React.memo(
metricValueAggregate,
metricValueLabel,
onChartMounted: onChartMountedProp,
- useRapidResizeObserver = true,
onInitialAnimationEnd,
editable,
selectedChartType,
@@ -140,7 +139,6 @@ export const BusterChart: React.FC = React.memo(
animate,
animateLegend,
className,
- useRapidResizeObserver,
columnLabelFormats,
selectedChartType,
loading,
diff --git a/web/src/components/ui/charts/BusterChartJS/BusterChartJS.tsx b/web/src/components/ui/charts/BusterChartJS/BusterChartJS.tsx
index acba1a12c..b2a31f28b 100644
--- a/web/src/components/ui/charts/BusterChartJS/BusterChartJS.tsx
+++ b/web/src/components/ui/charts/BusterChartJS/BusterChartJS.tsx
@@ -21,7 +21,6 @@ export const BusterChartJS: React.FC = ({
loading = false,
showLegendHeadline,
columnMetadata = DEFAULT_COLUMN_METADATA,
- useRapidResizeObserver = false,
onChartMounted,
onInitialAnimationEnd,
columnSettings = DEFAULT_CHART_CONFIG.columnSettings,
@@ -74,7 +73,6 @@ export const BusterChartJS: React.FC = ({
columnSettings={columnSettings}
{...props}
className={className}
- useRapidResizeObserver={useRapidResizeObserver}
/>
);
diff --git a/web/src/components/ui/charts/BusterChartJS/BusterChartJSComponent.tsx b/web/src/components/ui/charts/BusterChartJS/BusterChartJSComponent.tsx
index 4df8bcdd8..e42f7be24 100644
--- a/web/src/components/ui/charts/BusterChartJS/BusterChartJSComponent.tsx
+++ b/web/src/components/ui/charts/BusterChartJS/BusterChartJSComponent.tsx
@@ -67,7 +67,6 @@ export const BusterChartJSComponent = React.memo(
xAxisTimeInterval,
//TODO
xAxisDataZoom,
- useRapidResizeObserver = false,
...rest
},
ref
diff --git a/web/src/components/ui/charts/BusterChartJS/ChartJSTheme.ts b/web/src/components/ui/charts/BusterChartJS/ChartJSTheme.ts
index c5a25043c..762d08f88 100644
--- a/web/src/components/ui/charts/BusterChartJS/ChartJSTheme.ts
+++ b/web/src/components/ui/charts/BusterChartJS/ChartJSTheme.ts
@@ -69,6 +69,7 @@ ChartJS.register(
);
ChartJS.defaults.responsive = true;
+ChartJS.defaults.resizeDelay = 100;
ChartJS.defaults.maintainAspectRatio = false;
ChartJS.defaults.color = color;
ChartJS.defaults.backgroundColor = DEFAULT_CHART_THEME;
diff --git a/web/src/components/ui/inputs/AppCodeEditor/AppCodeEditor.tsx b/web/src/components/ui/inputs/AppCodeEditor/AppCodeEditor.tsx
index 0e8bb2a96..14a0af898 100644
--- a/web/src/components/ui/inputs/AppCodeEditor/AppCodeEditor.tsx
+++ b/web/src/components/ui/inputs/AppCodeEditor/AppCodeEditor.tsx
@@ -8,7 +8,7 @@ import { CircleSpinnerLoaderContainer } from '../../loaders/CircleSpinnerLoaderC
import { useMemoizedFn } from '@/hooks';
import { cn } from '@/lib/classMerge';
import type { editor } from 'monaco-editor/esm/vs/editor/editor.api';
-//import './MonacoWebWorker';
+import './MonacoWebWorker';
import { configureMonacoToUseYaml } from './yamlHelper';
//import GithubLightTheme from 'monaco-themes/themes/Github Light.json';
diff --git a/web/src/controllers/MetricController/MetricController.tsx b/web/src/controllers/MetricController/MetricController.tsx
index a5b5a3b46..264210678 100644
--- a/web/src/controllers/MetricController/MetricController.tsx
+++ b/web/src/controllers/MetricController/MetricController.tsx
@@ -23,8 +23,6 @@ export const MetricController: React.FC<{
? MetricViewComponents[selectedFileView as MetricFileView]
: () => <>>;
- console.log(selectedFileView);
-
return (
<>
{showLoader && }
diff --git a/web/src/lib/chat.ts b/web/src/lib/chat.ts
index d5e3ff3cf..07e50d238 100644
--- a/web/src/lib/chat.ts
+++ b/web/src/lib/chat.ts
@@ -40,7 +40,6 @@ export const updateChatToIChat = (
chat.messages,
isNewChat ? last(chat.message_ids) : undefined
);
- console.log(iChatMessages);
return {
iChat,
iChatMessages