Skip to content

Commit

Permalink
fix: add newlines after root element in leaf files
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 committed Apr 7, 2024
1 parent 6cfbc95 commit c186ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/buildLeafFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function buildLeafFile(
rootElementHeader: string,
): Promise<void> {
let leafFile = `${XML_HEADER}\n`;
leafFile += rootElementHeader;
leafFile += `${rootElementHeader}\n`;

const sortedLeafContent = leafContent
.split("\n") // Split by lines
Expand Down

0 comments on commit c186ba8

Please sign in to comment.