order configured tracing providers in alphabetical order

pull/14262/head
Gu 1 year ago
parent 0b254c426b
commit 8d9767d80c

@ -140,18 +140,18 @@ const ConfigPopup: FC<PopupProps> = ({
const configuredProviderPanel = () => { const configuredProviderPanel = () => {
const configuredPanels: JSX.Element[] = [] const configuredPanels: JSX.Element[] = []
if (weaveConfig) if (langFuseConfig)
configuredPanels.push(weavePanel) configuredPanels.push(langfusePanel)
if (langSmithConfig) if (langSmithConfig)
configuredPanels.push(langSmithPanel) configuredPanels.push(langSmithPanel)
if (langFuseConfig)
configuredPanels.push(langfusePanel)
if (opikConfig) if (opikConfig)
configuredPanels.push(opikPanel) configuredPanels.push(opikPanel)
if (weaveConfig)
configuredPanels.push(weavePanel)
return configuredPanels return configuredPanels
} }

Loading…
Cancel
Save