Skip to content

Commit

Permalink
fix: remove content fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Aug 11, 2022
1 parent 236d4de commit 657a5f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { frontmatter = defaults, content = defaults } = Astro.props;
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{frontmatter.title ?? content.title}</title>
<title>{frontmatter.title}</title>
</head>
<body>
<slot />
Expand Down

0 comments on commit 657a5f1

Please sign in to comment.