diff --git a/src/commands/Template.ts b/src/commands/Template.ts index cd67a3a9..c7cdecd1 100644 --- a/src/commands/Template.ts +++ b/src/commands/Template.ts @@ -95,7 +95,6 @@ export class Template { */ public static async create(folderPath: string) { const folder = Settings.get(SETTING_TEMPLATES_FOLDER); - const prefix = Settings.get(SETTING_TEMPLATES_PREFIX); const contentTypes = ContentType.getAll(); if (!folderPath) { diff --git a/src/helpers/ContentType.ts b/src/helpers/ContentType.ts index b8bc8e79..b7500fe5 100644 --- a/src/helpers/ContentType.ts +++ b/src/helpers/ContentType.ts @@ -50,7 +50,6 @@ export class ContentType { } private static async create(contentType: IContentType, folderPath: string) { - const prefix = Settings.get(SETTING_TEMPLATES_PREFIX); const titleValue = await Questions.ContentTitle(); if (!titleValue) {