From 720543f483cbc781e64569cbe15fe8264c27dd7c Mon Sep 17 00:00:00 2001 From: Josh Hunt Date: Wed, 27 Sep 2023 11:11:37 +0000 Subject: [PATCH] Chore: Remove unreachable return in parseDataplaneLogsFrame (#75516) --- public/app/features/logs/logsFrame.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/public/app/features/logs/logsFrame.ts b/public/app/features/logs/logsFrame.ts index a9fe171c0d9..a003eff5927 100644 --- a/public/app/features/logs/logsFrame.ts +++ b/public/app/features/logs/logsFrame.ts @@ -80,7 +80,6 @@ function parseDataplaneLogsFrame(frame: DataFrame): LogsFrame | null { getAttributesAsLabels: () => (attributes !== null ? attributes.map(attributesToLabels) : null), extraFields, }; - return null; } export function parseLogsFrame(frame: DataFrame): LogsFrame | null {