From 32823fd40d03c1a942ea175abfcada941261d7e3 Mon Sep 17 00:00:00 2001 From: Geert Rademakes Date: Wed, 12 Mar 2025 12:59:52 +0100 Subject: [PATCH] Now prettier XML --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 49f346b..d1733ba 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -220,7 +220,7 @@ export default function RekordboxReader() { }); // Generate the XML content as a string - const xmlContent = doc.end({ prettyPrint: true }); + const xmlContent = doc.end({ pretty: true }); // Create a Blob from the XML content const blob = new Blob([xmlContent], { type: "application/xml" });