From 73d101210cfad9baa07d332a730902da5b7d0f12 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Wed, 4 Dec 2024 18:43:50 +0000 Subject: [PATCH] style: auto-formatting [CI] --- src/compile/data/facet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile/data/facet.ts b/src/compile/data/facet.ts index 512166aa49..0c678deeb1 100644 --- a/src/compile/data/facet.ts +++ b/src/compile/data/facet.ts @@ -213,7 +213,7 @@ export class FacetNode extends DataFlowNode { const hasSharedAxis: {row?: true; column?: true} = {}; for (const headerChannel of HEADER_CHANNELS) { for (const headerType of HEADER_TYPES) { - const headers = (layoutHeaders[headerChannel]?.[headerType]) ?? []; + const headers = layoutHeaders[headerChannel]?.[headerType] ?? []; for (const header of headers) { if (header.axes?.length > 0) { hasSharedAxis[headerChannel] = true;