Skip to content

Commit

Permalink
Remove theme color from meta
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelArestad committed Aug 17, 2022
1 parent fd5cd00 commit 3cdb04b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion code/lib/builder-manager/src/utils/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`),
Expand Down
1 change: 0 additions & 1 deletion code/lib/builder-manager/templates/template.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="theme-color" content="<%= themeColor %>" />

<title><%= typeof title !== 'undefined'? title : 'Storybook'%></title>

Expand Down

0 comments on commit 3cdb04b

Please sign in to comment.