From 3cdb04bfe59b65b011ee5186fcb6348822765855 Mon Sep 17 00:00:00 2001 From: Michael Arestad Date: Wed, 17 Aug 2022 12:45:04 -0600 Subject: [PATCH] Remove theme color from meta --- code/lib/builder-manager/src/utils/template.ts | 1 - code/lib/builder-manager/templates/template.ejs | 1 - 2 files changed, 2 deletions(-) diff --git a/code/lib/builder-manager/src/utils/template.ts b/code/lib/builder-manager/src/utils/template.ts index 2a01fabaffce..dca1eab9023b 100644 --- a/code/lib/builder-manager/src/utils/template.ts +++ b/code/lib/builder-manager/src/utils/template.ts @@ -66,7 +66,6 @@ export const renderHTML = async ( return render(templateRef, { title: titleRef ? `${titleRef} - Storybook` : 'Storybook', - themeColor: '#F6F9FC', files: { js: filesRef.filter((f) => f.path.match(/\.mjs$/)).map((f) => `./sb-addons/${f.path}`), css: filesRef.filter((f) => f.path.match(/\.css$/)).map((f) => `./sb-addons/${f.path}`), diff --git a/code/lib/builder-manager/templates/template.ejs b/code/lib/builder-manager/templates/template.ejs index 8e9974e33707..1eaad092f2a9 100644 --- a/code/lib/builder-manager/templates/template.ejs +++ b/code/lib/builder-manager/templates/template.ejs @@ -2,7 +2,6 @@ - <%= typeof title !== 'undefined'? title : 'Storybook'%>