diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/templating/templates/tree/data/template.tree.store.ts b/src/Umbraco.Web.UI.Client/src/backoffice/templating/templates/tree/data/template.tree.store.ts index f24644d836..b0635b05f5 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/templating/templates/tree/data/template.tree.store.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/templating/templates/tree/data/template.tree.store.ts @@ -21,7 +21,7 @@ export class UmbTemplateTreeStore extends UmbStoreBase { this.#data.append(items); } - updateItem(key: string, data: Partial): void { + updateItem(key: string, data: Partial) { const entries = this.#data.getValue(); const entry = entries.find((entry) => entry.key === key); @@ -30,7 +30,7 @@ export class UmbTemplateTreeStore extends UmbStoreBase { } } - removeItem(key: string): void { + removeItem(key: string) { const entries = this.#data.getValue(); const entry = entries.find((entry) => entry.key === key);