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'%>