Skip to content

Commit

Permalink
Remove errant console statement
Browse files Browse the repository at this point in the history
  • Loading branch information
znicholasbrown committed Mar 19, 2024
1 parent 30399b3 commit 250f3d0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/MarkdownRenderer/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,6 @@ const getVNode = (token: Token, options: ParserOptions): VNode | VNode[] => {
const { href, title } = token
const classList = [`${baseClass}__link`]
const composedHref = normalizeHref(href)
console.log({
href,
composedHref,
})
return h(PLink, { to: composedHref, title, class: classList, rel: 'noopener' }, { default: () => token.text })
}

Expand Down

0 comments on commit 250f3d0

Please sign in to comment.