Skip to content

Commit

Permalink
style: auto-formatting [CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed Dec 4, 2024
1 parent 0554ff1 commit 73d1012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compile/data/facet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 73d1012

Please sign in to comment.