diff --git a/telemetry/ui/src/components/routes/app/InsightsView.tsx b/telemetry/ui/src/components/routes/app/InsightsView.tsx
index 30e0b627..e69e023c 100644
--- a/telemetry/ui/src/components/routes/app/InsightsView.tsx
+++ b/telemetry/ui/src/components/routes/app/InsightsView.tsx
@@ -252,12 +252,11 @@ const InsightSubTable = (props: {
export const InsightsView = (props: { steps: Step[] }) => {
const allAttributes: AttributeModel[] = props.steps.flatMap((step) => step.attributes);
- let noInsights = true;
const allSpans = props.steps.flatMap((step) => step.spans);
const out = (
-
+
@@ -271,7 +270,6 @@ export const InsightsView = (props: { steps: Step[] }) => {
{REGISTERED_INSIGHTS.map((insight) => {
if (insight.hasInsight(allAttributes)) {
- noInsights = false;
return (
{
})}
-
- );
- if (noInsights) {
- return (
-
- Use this tab to view summaries of your application -- E.G. LLM call data. To instrument,
- and start collecting, see{' '}
+
+ Use this tab to view summaries of your application. This automatically picks up on a
+ variety of attributes, including those populated by{' '}
+
+ opentelemetry instrumentation.
+ {' '}
+ -- E.G. LLM call data. To instrument, and start collecting, see{' '}
{
- );
- }
+
+ );
return out;
};
diff --git a/telemetry/ui/src/components/routes/app/ReproduceView.tsx b/telemetry/ui/src/components/routes/app/ReproduceView.tsx
index b5e76deb..0ea6bd26 100644
--- a/telemetry/ui/src/components/routes/app/ReproduceView.tsx
+++ b/telemetry/ui/src/components/routes/app/ReproduceView.tsx
@@ -48,7 +48,7 @@ export const ReproduceView = (props: {
onClose={() => setIsFlashVisible(false)}
/>
)}
-
+
To generate a test case for this step, run the following command.