Compare commits

...

1 Commits

Author SHA1 Message Date
Vinícius Lourenço
a2d3a446f8 fix(metrics-explorer): handle in case .data is undefined 2026-06-01 11:15:36 -03:00

View File

@@ -56,7 +56,7 @@ function MetricDetails({
);
const metadata = useMemo(() => {
if (!metricMetadataResponse) {
if (!metricMetadataResponse?.data) {
return null;
}
const { type, description, unit, temporality, isMonotonic } =