diff --git a/src/file/app-properties/app-properties.ts b/src/file/app-properties/app-properties.ts index e984d32f57..62e22c0a62 100644 --- a/src/file/app-properties/app-properties.ts +++ b/src/file/app-properties/app-properties.ts @@ -5,9 +5,11 @@ export class AppProperties extends XmlComponent { constructor() { super("Properties"); - this.root.push(new AppPropertiesAttributes({ - xmlns: "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties", - vt: "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes", - })); + this.root.push( + new AppPropertiesAttributes({ + xmlns: "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties", + vt: "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes", + }), + ); } }