diff --git a/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx b/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx index 5b0523caa5..0efc5082a4 100644 --- a/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx +++ b/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx @@ -140,18 +140,18 @@ const ConfigPopup: FC = ({ const configuredProviderPanel = () => { const configuredPanels: JSX.Element[] = [] - if (weaveConfig) - configuredPanels.push(weavePanel) + if (langFuseConfig) + configuredPanels.push(langfusePanel) if (langSmithConfig) configuredPanels.push(langSmithPanel) - if (langFuseConfig) - configuredPanels.push(langfusePanel) - if (opikConfig) configuredPanels.push(opikPanel) + if (weaveConfig) + configuredPanels.push(weavePanel) + return configuredPanels }