Skip to content

Commit

Permalink
Remove error message for using Markdown component (#7343)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Jun 9, 2023
1 parent e3271f8 commit 3d9a392
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/modern-turkeys-shop.md
@@ -0,0 +1,5 @@
---
'@astrojs/markdown-component': patch
---

Fix Markdown component error message false positive
8 changes: 1 addition & 7 deletions packages/markdown/component/Markdown.astro
Expand Up @@ -3,13 +3,6 @@ export interface Props {
content?: string;
}
// NOTE(fks): We are most likely moving this component out of Astro core
// in a few weeks. Checking the name like this is a bit of a hack, but we
// intentionally don't want to add an SSR flag for others to read from, just yet.
if (Astro.redirect.name !== '_onlyAvailableInSSR') {
console.error(`\x1B[31mThe <Markdown> component is not available in SSR. See https://github.com/withastro/rfcs/discussions/179 for more info.\x1B[39m`);
}
const dedent = (str: string) => {
const _str = str.split('\n').filter(s => s.trimStart().length > 0);
if (_str.length === 0) {
Expand All @@ -24,6 +17,7 @@ const dedent = (str: string) => {
// Internal props that should not be part of the external interface.
interface InternalProps extends Props {
class: string;
$scope: string;
}
Expand Down

0 comments on commit 3d9a392

Please sign in to comment.