Chore: Remove unreachable return in parseDataplaneLogsFrame (#75516)

This commit is contained in:
Josh Hunt 2023-09-27 11:11:37 +00:00 committed by GitHub
parent d8e99e2bb5
commit 720543f483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {