diff --git a/pkg/interface/src/views/apps/publish/components/Note.tsx b/pkg/interface/src/views/apps/publish/components/Note.tsx
index 2bb8e77e01..ba1c8dc538 100644
--- a/pkg/interface/src/views/apps/publish/components/Note.tsx
+++ b/pkg/interface/src/views/apps/publish/components/Note.tsx
@@ -1,5 +1,5 @@
import React, { useState, useEffect } from 'react';
-import { Box, Text, Col } from '@tlon/indigo-react';
+import { Box, Text, Col, Anchor } from '@tlon/indigo-react';
import ReactMarkdown from 'react-markdown';
import bigInt from 'big-integer';
@@ -32,6 +32,14 @@ export function Note(props: NoteProps & RouteComponentProps) {
const { notebook, note, contacts, ship, book, api, rootUrl, baseUrl, group } = props;
const editCommentId = props.match.params.commentId;
+ const renderers = {
+ link: ({ href, children }) => {
+ return (
+ {children}
+ )
+ }
+ };
+
const deletePost = async () => {
setDeleting(true);
const indices = [note.post.index];
@@ -107,7 +115,7 @@ export function Note(props: NoteProps & RouteComponentProps) {
-
+