Skip to content

Commit

Permalink
Fix marked sync return typing
Browse files Browse the repository at this point in the history
  • Loading branch information
schlusslicht committed Dec 13, 2023
1 parent 0684d05 commit 9a89b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eager/src/component/article.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class ArticleComponent extends HTMLElement implements Component {
<div className="container page">
<div className="row article-content">
<div className="col-md-12">
<div>{html(marked(this.article.body))}</div>
<div>{html(marked(this.article.body) as string)}</div>
<ArticleTags tagList={this.article.tagList}/>
</div>
</div>
Expand Down

0 comments on commit 9a89b83

Please sign in to comment.